diff options
author | Ian Delaney <idella4@gentoo.org> | 2015-11-21 08:36:25 +0800 |
---|---|---|
committer | Ian Delaney <idella4@gentoo.org> | 2015-11-21 08:37:56 +0800 |
commit | 3465c9e035cf4904334c586c4878d41c4d7caedb (patch) | |
tree | 0dabaab53ad38a5cc7b7ef64e17204bee46e3437 /www-apps/kibana-bin/files | |
parent | Fix desktop file's name (diff) | |
download | gentoo-3465c9e035cf4904334c586c4878d41c4d7caedb.tar.gz gentoo-3465c9e035cf4904334c586c4878d41c4d7caedb.tar.bz2 gentoo-3465c9e035cf4904334c586c4878d41c4d7caedb.zip |
www-apps/kibana-bin: bump -> vn. 4.1.3, clean old vns. & defunct init scripts
Requests made, new ebuild submitted via proxy maintainer via the gentoo bug
which is under category of security bug.
Gentoo bug: #566044O
Package-Manager: portage-2.2.24
Diffstat (limited to 'www-apps/kibana-bin/files')
-rw-r--r-- | www-apps/kibana-bin/files/kibana.initd | 39 | ||||
-rw-r--r-- | www-apps/kibana-bin/files/kibana.initd-r1 | 18 |
2 files changed, 0 insertions, 57 deletions
diff --git a/www-apps/kibana-bin/files/kibana.initd b/www-apps/kibana-bin/files/kibana.initd deleted file mode 100644 index 9effc545218e..000000000000 --- a/www-apps/kibana-bin/files/kibana.initd +++ /dev/null @@ -1,39 +0,0 @@ -#!/sbin/runscript -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -command="/opt/kibana/bin/kibana" -pidfile="/run/kibana.pid" -KIBANA_USER=${KIBANA_USER:="kibana"} - -depend() { - need elasticsearch -} - -start() { - ebegin "Starting ${SVCNAME}" - - checkpath -d -o "${KIBANA_USER}" -m750 "/var/log/kibana" - - start-stop-daemon --start \ - --user $KIBANA_USER \ - --background \ - --make-pidfile \ - --pidfile $pidfile \ - --stdout /var/log/kibana/kibana.log \ - --stderr /var/log/kibana/kibana.err \ - --exec $command - - eend $? -} - -stop() { - ebegin "Stopping ${SVCNAME}" - - start-stop-daemon --stop \ - --pidfile $pidfile - - - eend $? -} diff --git a/www-apps/kibana-bin/files/kibana.initd-r1 b/www-apps/kibana-bin/files/kibana.initd-r1 deleted file mode 100644 index 3fdcec648c8e..000000000000 --- a/www-apps/kibana-bin/files/kibana.initd-r1 +++ /dev/null @@ -1,18 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -KIBANA_USER=${KIBANA_USER:-kibana} - -command="/opt/kibana/bin/kibana" -pidfile="/run/kibana.pid" -command_background="true" -start_stop_daemon_args="--user=\"${KIBANA_USER}\" --stdout /var/log/kibana/kibana.log --stderr /var/log/kibana/kibana.err" - -depend() { - need elasticsearch -} - -start_pre() { - checkpath -d -o "${KIBANA_USER}" -m750 "/var/log/kibana" -} |