diff options
author | Christian Ruppert <idl0r@gentoo.org> | 2011-12-31 19:54:20 +0000 |
---|---|---|
committer | Christian Ruppert <idl0r@gentoo.org> | 2011-12-31 19:54:20 +0000 |
commit | b73bd319d5d702bdf221277923bd9af2cdf4a87c (patch) | |
tree | a20dac541e7fb31912c10b124e43f0dfe3578933 /app-crypt/cfs/files | |
parent | Add Prefix keywords, bug #396547 (diff) | |
download | gentoo-2-b73bd319d5d702bdf221277923bd9af2cdf4a87c.tar.gz gentoo-2-b73bd319d5d702bdf221277923bd9af2cdf4a87c.tar.bz2 gentoo-2-b73bd319d5d702bdf221277923bd9af2cdf4a87c.zip |
Revbump. Don't use deprecated start-stop-daemon options, bug 377843.
(Portage version: 2.1.10.41/cvs/Linux i686, RepoMan options: --force)
Diffstat (limited to 'app-crypt/cfs/files')
-rw-r--r-- | app-crypt/cfs/files/cfsd.init | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app-crypt/cfs/files/cfsd.init b/app-crypt/cfs/files/cfsd.init index a2d62771939f..603d80d3a635 100644 --- a/app-crypt/cfs/files/cfsd.init +++ b/app-crypt/cfs/files/cfsd.init @@ -1,7 +1,7 @@ #!/sbin/runscript -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/cfs/files/cfsd.init,v 1.2 2004/09/28 00:18:13 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/cfs/files/cfsd.init,v 1.3 2011/12/31 19:54:20 idl0r Exp $ depend() { need nfs @@ -17,7 +17,7 @@ start() { stop() { ebegin "Stopping cfsd" - start-stop-daemon --oknodo --stop --pidfile /var/run/cfs.pid \ + start-stop-daemon --stop --pidfile /var/run/cfs.pid \ && rm -f /var/run/cfs.pid eend $? } |