Skip to content

Commit

Permalink
Merge pull request #7431 from jbudz/issues/7430
Browse files Browse the repository at this point in the history
[build] Set init description to kibana
  • Loading branch information
jbudz authored Jun 15, 2016
2 parents e81e1f2 + b956a0b commit bd3cca9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tasks/build/pleaserun.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import { resolve } from 'path';
import { appendFileSync } from 'fs';
import exec from '../utils/exec';
import { capitalize } from 'lodash';

export default (grunt) => {
const userScriptsDir = grunt.config.get('userScriptsDir');
const { path, user, group, name, description } = grunt.config.get('packages');
const { path, user, group, name } = grunt.config.get('packages');

grunt.registerTask('_build:pleaseRun', function () {
grunt.config.get('services').forEach((service) => {
Expand All @@ -15,7 +16,7 @@ export default (grunt) => {
'--install-prefix', service.outputDir,
'--overwrite',
'--name', name,
'--description', description,
'--description', capitalize(name),
'--user', user,
'--group', group,
'--sysv-log-path', path.logs,
Expand Down

0 comments on commit bd3cca9

Please sign in to comment.