mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
parent
d978c4c2e9
commit
eb919f77a8
1 changed files with 3 additions and 2 deletions
|
@ -33,8 +33,9 @@ module.exports = function (grunt) {
|
||||||
// kibana.rpm and kibana.deb
|
// kibana.rpm and kibana.deb
|
||||||
if (/linux-x(86|64)$/.test(name)) {
|
if (/linux-x(86|64)$/.test(name)) {
|
||||||
let sysv = servicesByName.sysv.outputDir + '/etc/=/etc/';
|
let sysv = servicesByName.sysv.outputDir + '/etc/=/etc/';
|
||||||
fpm(args.concat('-t', 'rpm', '-a', arch, '--rpm-os', 'linux', files, sysv));
|
let systemd = servicesByName.systemd.outputDir + '/lib/=/lib/';
|
||||||
fpm(args.concat('-t', 'deb', '-a', arch, files, sysv));
|
fpm(args.concat('-t', 'rpm', '-a', arch, '--rpm-os', 'linux', files, sysv, systemd));
|
||||||
|
fpm(args.concat('-t', 'deb', '-a', arch, files, sysv, systemd));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue