package/earlyoom: restore missing startup message in the init script
'/etc/init.d/S02earlyoom start' simply prints 'OK' instead of 'Starting earlyoom: OK' because of a typo in the printf function call. Signed-off-by: Sergey Bobrenok <SIBobrenok@sberdevices.ru> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
parent
b2fb3a7e2a
commit
281a80dc93
@ -8,7 +8,7 @@ EARLYOOM_ARGS=""
|
||||
[ -r "/etc/default/$DAEMON" ] && . "/etc/default/$DAEMON"
|
||||
|
||||
start() {
|
||||
printf() 'Starting %s: ' "$DAEMON"
|
||||
printf 'Starting %s: ' "$DAEMON"
|
||||
start-stop-daemon -b -m -S -q -p "$PIDFILE" -x "/usr/bin/$DAEMON" \
|
||||
-- $EARLYOOM_ARGS
|
||||
status=$?
|
||||
|
Loading…
Reference in New Issue
Block a user