diff options
author | Fabian Groffen <grobian@gentoo.org> | 2017-07-25 09:27:40 +0200 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2017-07-25 09:27:52 +0200 |
commit | f7a993660f555e760276cfedcde6ceecfa1434c7 (patch) | |
tree | d496f0a06824fdc5946ef41e7da4c74be189da0b /app-admin | |
parent | net-misc/icaclient: Removed old. (diff) | |
download | gentoo-f7a993660f555e760276cfedcde6ceecfa1434c7.tar.gz gentoo-f7a993660f555e760276cfedcde6ceecfa1434c7.tar.bz2 gentoo-f7a993660f555e760276cfedcde6ceecfa1434c7.zip |
app-admin/diamond: increase stop timeout, shutdown is a slow process
Package-Manager: Portage-2.3.6, Repoman-2.3.1
Diffstat (limited to 'app-admin')
-rw-r--r-- | app-admin/diamond/files/diamond.initd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app-admin/diamond/files/diamond.initd b/app-admin/diamond/files/diamond.initd index 6473dac288cb..168b175a788c 100644 --- a/app-admin/diamond/files/diamond.initd +++ b/app-admin/diamond/files/diamond.initd @@ -1,5 +1,5 @@ #!/sbin/openrc-run -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 depend() { @@ -14,6 +14,6 @@ start() { stop() { ebegin "Stopping ${SVCNAME}" - start-stop-daemon --stop --pidfile /run/${SVCNAME}.pid --name diamond + start-stop-daemon --stop -R 80 --pidfile /run/${SVCNAME}.pid eend $? } |