diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2014-03-04 00:17:58 +0000 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2014-03-04 00:17:58 +0000 |
commit | 48ff16dafa3427d6e0576c09cb009b025107db3f (patch) | |
tree | df4aea8228cb7304b2ae9e57ddd2aeb561bee7fe | |
parent | Remove old (diff) | |
download | gentoo-2-48ff16dafa3427d6e0576c09cb009b025107db3f.tar.gz gentoo-2-48ff16dafa3427d6e0576c09cb009b025107db3f.tar.bz2 gentoo-2-48ff16dafa3427d6e0576c09cb009b025107db3f.zip |
Fixed pidfile location for non-linux systems
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
-rw-r--r-- | sys-process/cronie/ChangeLog | 6 | ||||
-rw-r--r-- | sys-process/cronie/files/anacron-1.0-initd | 4 | ||||
-rw-r--r-- | sys-process/cronie/files/cronie-1.3-initd | 4 |
3 files changed, 9 insertions, 5 deletions
diff --git a/sys-process/cronie/ChangeLog b/sys-process/cronie/ChangeLog index 2e4c8949419f..48294e8b8b2a 100644 --- a/sys-process/cronie/ChangeLog +++ b/sys-process/cronie/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-process/cronie # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/cronie/ChangeLog,v 1.50 2014/02/25 19:08:17 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/cronie/ChangeLog,v 1.51 2014/03/04 00:17:58 polynomial-c Exp $ + + 04 Mar 2014; Lars Wendler <polynomial-c@gentoo.org> files/anacron-1.0-initd, + files/cronie-1.3-initd: + Fixed pidfile location for non-linux systems. *cronie-1.4.11-r1 (25 Feb 2014) diff --git a/sys-process/cronie/files/anacron-1.0-initd b/sys-process/cronie/files/anacron-1.0-initd index df55b0c8feb1..6462b900eceb 100644 --- a/sys-process/cronie/files/anacron-1.0-initd +++ b/sys-process/cronie/files/anacron-1.0-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/sys-process/cronie/files/anacron-1.0-initd,v 1.3 2014/02/25 19:08:17 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/cronie/files/anacron-1.0-initd,v 1.4 2014/03/04 00:17:58 polynomial-c Exp $ # anacron forks itself when -d gets omitted. So s-s-d fails to create a valid # pidfile. DO NOT remove -d from command_args and let s-s-d start anacron @@ -9,7 +9,7 @@ command="/usr/sbin/anacron" command_args="-d -s -S /var/spool/anacron" -pidfile="/run/anacron.pid" +pidfile="/var/run/anacron.pid" command_background="true" depend() { diff --git a/sys-process/cronie/files/cronie-1.3-initd b/sys-process/cronie/files/cronie-1.3-initd index 1c124c8bdbbf..138530f5e977 100644 --- a/sys-process/cronie/files/cronie-1.3-initd +++ b/sys-process/cronie/files/cronie-1.3-initd @@ -1,11 +1,11 @@ #!/sbin/runscript # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-process/cronie/files/cronie-1.3-initd,v 1.2 2014/02/25 19:08:17 polynomial-c Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-process/cronie/files/cronie-1.3-initd,v 1.3 2014/03/04 00:17:58 polynomial-c Exp $ command="/usr/sbin/crond" command_args="${CRONDARGS}" -pidfile="/run/crond.pid" +pidfile="/var/run/crond.pid" depend() { use clock logger |