From: root Date: Mon, 18 Jan 2016 16:36:23 +0000 (+0100) Subject: saving uncommitted changes in /etc prior to emerge run X-Git-Url: https://git.uhu-banane.de/?a=commitdiff_plain;h=ad10c1e323bedde11cc5957ce30970662e6a0dbc;p=config%2Fhelga%2Fetc.git saving uncommitted changes in /etc prior to emerge run --- diff --git a/init.d/ulogd b/init.d/ulogd index 47a0674..c994507 100755 --- a/init.d/ulogd +++ b/init.d/ulogd @@ -7,6 +7,7 @@ extra_started_commands="reload reopen" : ${ULOGD_BINARY:=/usr/sbin/ulogd} : ${ULOGD_PIDFILE:=/run/${SVCNAME}.pid} +: ${ULOGD_WAIT:=200} : ${ULOGD_OPTS:=--daemon --uid ulogd --pidfile ${ULOGD_PIDFILE}} depend() { @@ -17,7 +18,7 @@ depend() { start() { ebegin "Starting ${SVCNAME}" start-stop-daemon --start \ - --exec ${ULOGD_BINARY} --pidfile ${ULOGD_PIDFILE} \ + --exec ${ULOGD_BINARY} --pidfile ${ULOGD_PIDFILE} --wait ${ULOGD_WAIT} \ -- ${ULOGD_OPTS} eend $? }