diff options
author | Marc Schiffbauer <mschiff@gentoo.org> | 2014-05-04 17:03:59 +0000 |
---|---|---|
committer | Marc Schiffbauer <mschiff@gentoo.org> | 2014-05-04 17:03:59 +0000 |
commit | bc840032b1be30c8610d2a909ff78ec216c18a04 (patch) | |
tree | 1bc1babb67a58600985a95fbf0da3bbf9909cc2b /app-backup/bareos/files | |
parent | Remove old. (diff) | |
download | gentoo-2-bc840032b1be30c8610d2a909ff78ec216c18a04.tar.gz gentoo-2-bc840032b1be30c8610d2a909ff78ec216c18a04.tar.bz2 gentoo-2-bc840032b1be30c8610d2a909ff78ec216c18a04.zip |
Fix pid path in init scripts
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0x296C6CCA35A64134)
Diffstat (limited to 'app-backup/bareos/files')
-rw-r--r-- | app-backup/bareos/files/bareos-dir.initd | 4 | ||||
-rw-r--r-- | app-backup/bareos/files/bareos-fd.initd | 4 | ||||
-rw-r--r-- | app-backup/bareos/files/bareos-sd.initd | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/app-backup/bareos/files/bareos-dir.initd b/app-backup/bareos/files/bareos-dir.initd index e65b85c4286a..4d0f5f1eb797 100644 --- a/app-backup/bareos/files/bareos-dir.initd +++ b/app-backup/bareos/files/bareos-dir.initd @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-backup/bareos/files/bareos-dir.initd,v 1.3 2014/05/04 16:49:52 mschiff Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-backup/bareos/files/bareos-dir.initd,v 1.4 2014/05/04 17:03:59 mschiff Exp $ depend() { use dns bareos-fd bareos-sd @@ -17,6 +17,6 @@ start() { stop() { ebegin "Stopping bareos director" - start-stop-daemon --stop --quiet --pidfile /run/bareos-dir.*.pid + start-stop-daemon --stop --quiet --pidfile /run/bareos/bareos-dir.*.pid eend $? } diff --git a/app-backup/bareos/files/bareos-fd.initd b/app-backup/bareos/files/bareos-fd.initd index aff41ae75851..e399d1e971dc 100644 --- a/app-backup/bareos/files/bareos-fd.initd +++ b/app-backup/bareos/files/bareos-fd.initd @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-backup/bareos/files/bareos-fd.initd,v 1.3 2014/05/04 16:49:52 mschiff Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-backup/bareos/files/bareos-fd.initd,v 1.4 2014/05/04 17:03:59 mschiff Exp $ depend() { use dns @@ -17,6 +17,6 @@ start() { stop() { ebegin "Stopping bareos file daemon" - start-stop-daemon --stop --quiet --pidfile /run/bareos-fd.*.pid + start-stop-daemon --stop --quiet --pidfile /run/bareos/bareos-fd.*.pid eend $? } diff --git a/app-backup/bareos/files/bareos-sd.initd b/app-backup/bareos/files/bareos-sd.initd index bbd44d0d3314..ef33942ea148 100644 --- a/app-backup/bareos/files/bareos-sd.initd +++ b/app-backup/bareos/files/bareos-sd.initd @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-backup/bareos/files/bareos-sd.initd,v 1.3 2014/05/04 16:49:52 mschiff Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-backup/bareos/files/bareos-sd.initd,v 1.4 2014/05/04 17:03:59 mschiff Exp $ depend() { use dns @@ -17,6 +17,6 @@ start() { stop() { ebegin "Stopping bareos storage daemon" - start-stop-daemon --stop --quiet --pidfile /run/bareos-sd.*.pid + start-stop-daemon --stop --quiet --pidfile /run/bareos/bareos-sd.*.pid eend $? } |