UNPKG

kibana-123

Version:

Kibana is an open source (Apache Licensed), browser based analytics and search dashboard for Elasticsearch. Kibana is a snap to setup and start using. Kibana strives to be easy to get started with, while also being flexible and powerful, just like Elastic

82 lines (76 loc) 3.31 kB
import { resolve } from 'path'; import { indexBy } from 'lodash'; import exec from '../utils/exec'; export default (grunt) => { const { config } = grunt; const exec = require('../utils/exec'); const targetDir = config.get('target'); const packageScriptsDir = grunt.config.get('packageScriptsDir'); const servicesByName = indexBy(config.get('services'), 'name'); const packages = config.get('packages'); const fpm = args => exec('fpm', args); grunt.registerTask('_build:osPackages', function () { grunt.file.mkdir(targetDir); config.get('platforms') .filter(({ name }) => /linux-x86(_64)?$/.test(name)) .forEach(({ buildDir, debArch, rpmArch }) => { const baseOptions = [ '--force', // we force dashes in the version file name because otherwise fpm uses // the filtered package version, which would have dashes replaced with // underscores '--package', `${targetDir}/NAME-${packages.version}-ARCH.TYPE`, '-s', 'dir', // input type '--name', packages.name, '--description', packages.description, '--version', packages.version, '--url', packages.site, '--vendor', packages.vendor, '--maintainer', packages.maintainer, '--license', packages.license, '--after-install', resolve(packageScriptsDir, 'post_install.sh'), '--before-install', resolve(packageScriptsDir, 'pre_install.sh'), '--before-remove', resolve(packageScriptsDir, 'pre_remove.sh'), '--after-remove', resolve(packageScriptsDir, 'post_remove.sh'), '--config-files', packages.path.kibanaConfig, '--template-value', `user=${packages.user}`, '--template-value', `group=${packages.group}`, '--template-value', `optimizeDir=${packages.path.home}/optimize`, '--template-value', `configDir=${packages.path.conf}`, '--template-value', `pluginsDir=${packages.path.plugins}`, '--template-value', `dataDir=${packages.path.data}`, //config folder is moved to path.conf, exclude {path.home}/config //uses relative path to --prefix, strip the leading / '--exclude', `${packages.path.home.slice(1)}/config`, '--exclude', `${packages.path.home.slice(1)}/data` ]; const debOptions = [ '-t', 'deb', '--architecture', debArch, '--deb-priority', 'optional' ]; const rpmOptions = [ '-t', 'rpm', '--architecture', rpmArch, '--rpm-os', 'linux' ]; const args = [ `${buildDir}/=${packages.path.home}/`, `${buildDir}/config/=${packages.path.conf}/`, `${buildDir}/data/=${packages.path.data}/`, `${servicesByName.sysv.outputDir}/etc/=/etc/`, `${servicesByName.systemd.outputDir}/etc/=/etc/` ]; //Manually find flags, multiple args without assignment are not entirely parsed const flags = grunt.option.flags().filter(flag => /deb|rpm/.test(flag)).join(','); const buildDeb = flags.includes('deb') || !flags.length; const buildRpm = flags.includes('rpm') || !flags.length; if (buildDeb) { fpm([...baseOptions, ...debOptions, ...args]); } if (buildRpm) { fpm([...baseOptions, ...rpmOptions, ...args]); } }); }); };