forked from elastic/logstash
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove pleaserun (via bin/system-install) usage
This change removes the usage of 'pleaserun', which was leveraged create the init.d scripts or systemd units. Now, we ship init.d scripts and systemd units to make the maintenance easier and following the lead of the other Elastic projects. Fixes: elastic#10519, Fixes: elastic#12439
- Loading branch information
Showing
10 changed files
with
250 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
pkg/service_templates/systemd/lib/systemd/system/logstash.service
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
[Unit] | ||
Description=logstash | ||
|
||
[Service] | ||
Type=simple | ||
User=logstash | ||
Group=logstash | ||
# Load env vars from /etc/default/ and /etc/sysconfig/ if they exist. | ||
# Prefixing the path with '-' makes it try to load, but if the file doesn't | ||
# exist, it continues onward. | ||
EnvironmentFile=-/etc/default/logstash | ||
EnvironmentFile=-/etc/sysconfig/logstash | ||
ExecStart=/usr/share/logstash/bin/logstash "--path.settings" "/etc/logstash" | ||
Restart=always | ||
WorkingDirectory=/ | ||
Nice=19 | ||
LimitNOFILE=16384 | ||
|
||
# When stopping, how long to wait before giving up and sending SIGKILL? | ||
# Keep in mind that SIGKILL on a process can cause data loss. | ||
TimeoutStopSec=infinity | ||
|
||
[Install] | ||
WantedBy=multi-user.target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
LS_HOME="/usr/share/logstash" | ||
LS_SETTINGS_DIR="/etc/logstash" | ||
LS_PIDFILE="/var/run/logstash.pid" | ||
LS_USER="logstash" | ||
LS_GROUP="logstash" | ||
LS_GC_LOG_FILE="/var/log/logstash/gc.log" | ||
LS_OPEN_FILES="16384" | ||
LS_NICE="19" | ||
SERVICE_NAME="logstash" | ||
SERVICE_DESCRIPTION="logstash" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,182 @@ | ||
#!/bin/sh | ||
# Init script for logstash | ||
# Maintained by | ||
# Generated by pleaserun. | ||
# Implemented based on LSB Core 3.1: | ||
# * Sections: 20.2, 20.3 | ||
# | ||
### BEGIN INIT INFO | ||
# Provides: logstash | ||
# Required-Start: $remote_fs $syslog | ||
# Required-Stop: $remote_fs $syslog | ||
# Default-Start: 2 3 4 5 | ||
# Default-Stop: 0 1 6 | ||
# Short-Description: | ||
# Description: logstash | ||
### END INIT INFO | ||
|
||
PATH=/sbin:/usr/sbin:/bin:/usr/bin | ||
export PATH | ||
|
||
name=logstash | ||
program=/usr/share/logstash/bin/logstash | ||
args=--path.settings\ /etc/logstash | ||
pidfile="/var/run/$name.pid" | ||
user="logstash" | ||
group="logstash" | ||
chroot="/" | ||
chdir="/" | ||
nice="19" | ||
limit_open_files="16384" | ||
|
||
|
||
# If this is set to 1, then when `stop` is called, if the process has | ||
# not exited within a reasonable time, SIGKILL will be sent next. | ||
# The default behavior is to simply log a message "program stop failed; still running" | ||
KILL_ON_STOP_TIMEOUT=0 | ||
|
||
# When loading default and sysconfig files, we use `set -a` to make | ||
# all variables automatically into environment variables. | ||
set -a | ||
[ -r /etc/default/logstash ] && . /etc/default/logstash | ||
[ -r /etc/sysconfig/logstash ] && . /etc/sysconfig/logstash | ||
set +a | ||
|
||
[ -z "$nice" ] && nice=0 | ||
|
||
trace() { | ||
logger -t "/etc/init.d/logstash" "$@" | ||
} | ||
|
||
emit() { | ||
trace "$@" | ||
echo "$@" | ||
} | ||
|
||
start() { | ||
|
||
# Ensure the log directory is setup correctly. | ||
if [ ! -d "/var/log" ]; then | ||
mkdir "/var/log" | ||
chown "$user":"$group" "/var/log" | ||
chmod 755 "/var/log" | ||
fi | ||
|
||
|
||
# Setup any environmental stuff beforehand | ||
ulimit -n ${limit_open_files} | ||
|
||
# Run the program! | ||
nice -n "$nice" \ | ||
chroot --userspec "$user":"$group" "$chroot" sh -c " | ||
ulimit -n ${limit_open_files} | ||
cd \"$chdir\" | ||
exec \"$program\" $args | ||
" >> /var/log/logstash-stdout.log 2>> /var/log/logstash-stderr.log & | ||
|
||
# Generate the pidfile from here. If we instead made the forked process | ||
# generate it there will be a race condition between the pidfile writing | ||
# and a process possibly asking for status. | ||
echo $! > $pidfile | ||
|
||
emit "$name started" | ||
return 0 | ||
} | ||
|
||
stop() { | ||
# Try a few times to kill TERM the program | ||
if status ; then | ||
pid=$(cat "$pidfile") | ||
trace "Killing $name (pid $pid) with SIGTERM" | ||
kill -TERM $pid | ||
# Wait for it to exit. | ||
for i in 1 2 3 4 5 ; do | ||
trace "Waiting $name (pid $pid) to die..." | ||
status || break | ||
sleep 1 | ||
done | ||
if status ; then | ||
if [ "$KILL_ON_STOP_TIMEOUT" -eq 1 ] ; then | ||
trace "Timeout reached. Killing $name (pid $pid) with SIGKILL. This may result in data loss." | ||
kill -KILL $pid | ||
emit "$name killed with SIGKILL." | ||
else | ||
emit "$name stop failed; still running." | ||
fi | ||
else | ||
emit "$name stopped." | ||
fi | ||
fi | ||
} | ||
|
||
status() { | ||
if [ -f "$pidfile" ] ; then | ||
pid=$(cat "$pidfile") | ||
if ps -p $pid > /dev/null 2> /dev/null ; then | ||
# process by this pid is running. | ||
# It may not be our pid, but that's what you get with just pidfiles. | ||
# TODO(sissel): Check if this process seems to be the same as the one we | ||
# expect. It'd be nice to use flock here, but flock uses fork, not exec, | ||
# so it makes it quite awkward to use in this case. | ||
return 0 | ||
else | ||
return 2 # program is dead but pid file exists | ||
fi | ||
else | ||
return 3 # program is not running | ||
fi | ||
} | ||
|
||
force_stop() { | ||
if status ; then | ||
stop | ||
status && kill -KILL $(cat "$pidfile") | ||
fi | ||
} | ||
|
||
|
||
case "$1" in | ||
force-start|start|stop|force-stop|restart) | ||
trace "Attempting '$1' on logstash" | ||
;; | ||
esac | ||
|
||
case "$1" in | ||
force-start) | ||
PRESTART=no | ||
exec "$0" start | ||
;; | ||
start) | ||
status | ||
code=$? | ||
if [ $code -eq 0 ]; then | ||
emit "$name is already running" | ||
exit $code | ||
else | ||
start | ||
exit $? | ||
fi | ||
;; | ||
stop) stop ;; | ||
force-stop) force_stop ;; | ||
status) | ||
status | ||
code=$? | ||
if [ $code -eq 0 ] ; then | ||
emit "$name is running" | ||
else | ||
emit "$name is not running" | ||
fi | ||
exit $code | ||
;; | ||
restart) | ||
|
||
stop && start | ||
;; | ||
*) | ||
echo "Usage: $SCRIPTNAME {start|force-start|stop|force-start|force-stop|status|restart}" >&2 | ||
exit 3 | ||
;; | ||
esac | ||
|
||
exit $? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters