diff options
author | Bertrand Jacquin <bertrand@jacquin.bzh> | 2017-08-20 01:16:09 +0100 |
---|---|---|
committer | Bertrand Jacquin <bertrand@jacquin.bzh> | 2017-08-22 00:12:43 +0100 |
commit | 389988e77156921ad7fa04b5e97dae61b207cb28 (patch) | |
tree | d0dd502325c928ff5a2dc4c60ea23e78cf79d5ab /flx/wdd | |
parent | profiles: Add server/dedibox/classic-2016 (diff) | |
download | portage-389988e77156921ad7fa04b5e97dae61b207cb28.tar.xz |
flx/wdd: Fix init script verbose message
Package-Manager: Portage-2.3.6, Repoman-2.3.1
Diffstat (limited to 'flx/wdd')
-rwxr-xr-x | flx/wdd/files/wdd.initd | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/flx/wdd/files/wdd.initd b/flx/wdd/files/wdd.initd index 5deae384..c0c3e2e4 100755 --- a/flx/wdd/files/wdd.initd +++ b/flx/wdd/files/wdd.initd @@ -1,5 +1,5 @@ #!/sbin/openrc-run -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ @@ -17,8 +17,8 @@ start() { stop() { # Do not stop ${RC_SVCNAME} on reboot/shutdown - if [ "${RC_RUNLEVEL}" = "shutdown" ] ; then - ewarn "Skip stopping ${RC_SVCNAME} (runlevel ${RC_SVCNAME})" + if [ "${RC_RUNLEVEL}" = "shutdown" ] ; then + ewarn "Skip stopping ${RC_SVCNAME} (runlevel ${RC_RUNLEVEL})" else ebegin "Stopping ${RC_SVCNAME}" start-stop-daemon --stop --retry 5 --exec "/sbin/${RC_SVCNAME}" |