Skip to content

Commit

Permalink
[build] Commit install/remove scripts instead of generating, stop ser…
Browse files Browse the repository at this point in the history
…vice before removing
  • Loading branch information
jbudz committed May 27, 2016
1 parent 1e9af4d commit 08c9897
Show file tree
Hide file tree
Showing 6 changed files with 52 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Gruntfile.js
Expand Up @@ -69,7 +69,7 @@ module.exports = function (grunt) {

grunt.config.merge(config);

config.userScriptsDir = __dirname + '/build/userScripts';
config.packageScriptsDir = __dirname + '/tasks/build/package_scripts';
// ensure that these run first, other configs need them
config.services = require('./tasks/config/services')(grunt);
config.platforms = require('./tasks/config/platforms')(grunt);
Expand Down
7 changes: 4 additions & 3 deletions tasks/build/os_packages.js
Expand Up @@ -6,7 +6,7 @@ module.exports = function (grunt) {
const exec = require('../utils/exec');
const targetDir = config.get('target');
const version = config.get('pkg.version');
const userScriptsDir = config.get('userScriptsDir');
const packageScriptsDir = config.get('packageScriptsDir');
const servicesByName = indexBy(config.get('services'), 'name');

grunt.registerTask('_build:osPackages', function () {
Expand All @@ -28,8 +28,9 @@ module.exports = function (grunt) {
'--vendor', 'Elasticsearch,\ Inc.',
'--maintainer', 'Kibana Team\ \<info@elastic.co\>',
'--license', 'Apache\ 2.0',
'--after-install', resolve(userScriptsDir, 'installer.sh'),
'--after-remove', resolve(userScriptsDir, 'remover.sh'),
'--after-install', resolve(packageScriptsDir, 'post_install.sh'),
'--before-remove', resolve(packageScriptsDir, 'pre_remove.sh'),
'--after-remove', resolve(packageScriptsDir, 'post_remove.sh'),
'--config-files', '/opt/kibana/config/kibana.yml'
];

Expand Down
16 changes: 16 additions & 0 deletions tasks/build/package_scripts/post_install.sh
@@ -0,0 +1,16 @@
#!/bin/sh

user_check() {
getent passwd "$1" > /dev/null 2>&1
}

user_create() {
# Create a system user. A system user is one within the system uid range and
# has no expiration
useradd -r "$1"
}

if ! user_check "kibana" ; then
user_create "kibana"
fi
chown kibana /opt/kibana/optimize
17 changes: 17 additions & 0 deletions tasks/build/package_scripts/post_remove.sh
@@ -0,0 +1,17 @@
#!/bin/sh

user_check() {
getent passwd "$1" > /dev/null 2>&1
}

user_remove() {
userdel "$1"
}

case $1 in
purge|0)
if user_check "kibana" ; then
user_remove "kibana"
fi
;;
esac
14 changes: 14 additions & 0 deletions tasks/build/package_scripts/pre_remove.sh
@@ -0,0 +1,14 @@
#!/bin/sh

echo -n "Stopping kibana service..."
if command -v systemctl >/dev/null; then
systemctl --no-reload stop kibana.service
fi
if [ -x /etc/init.d/kibana ]; then
if command -v invoke-rc.d >/dev/null; then
invoke-rc.d kibana stop
else
/etc/init.d/kibana stop
fi
fi
echo " OK"
5 changes: 0 additions & 5 deletions tasks/build/pleaserun.js
Expand Up @@ -2,7 +2,6 @@ module.exports = function createServices(grunt) {
const { resolve } = require('path');
const { appendFileSync } = require('fs');
const exec = require('../utils/exec');
const userScriptsDir = grunt.config.get('userScriptsDir');

grunt.registerTask('_build:pleaseRun', function () {
// TODO(sissel): Detect if 'pleaserun' is found, and provide a useful error
Expand All @@ -23,9 +22,5 @@ module.exports = function createServices(grunt) {
'/opt/kibana/bin/kibana'
]);
});

grunt.file.mkdir(userScriptsDir);
exec('please-manage-user', ['--output', userScriptsDir, 'kibana']);
appendFileSync(resolve(userScriptsDir, 'installer.sh'), 'chown kibana:kibana /opt/kibana/optimize');
});
};

0 comments on commit 08c9897

Please sign in to comment.