public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-process/cronie/files: anacron-1.0-initd cronie-1.3-initd
@ 2012-02-13 17:32 Lars Wendler (polynomial-c)
  0 siblings, 0 replies; 2+ messages in thread
From: Lars Wendler (polynomial-c) @ 2012-02-13 17:32 UTC (permalink / raw
  To: gentoo-commits

polynomial-c    12/02/13 17:32:34

  Added:                anacron-1.0-initd cronie-1.3-initd
  Log:
  Added anacron functionality (bug #403295). Reworked init script
  
  (Portage version: 2.2.0_alpha86/cvs/Linux x86_64)

Revision  Changes    Path
1.1                  sys-process/cronie/files/anacron-1.0-initd

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/cronie/files/anacron-1.0-initd?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/cronie/files/anacron-1.0-initd?rev=1.1&content-type=text/plain

Index: anacron-1.0-initd
===================================================================
#!/sbin/runscript
# Copyright 1999-2012 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.1 2012/02/13 17:32:34 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 -b from s-s-d_args!

command="/usr/sbin/anacron"
command_args="-d -s -S /var/spool/anacron"
pidfile="var/run/anacron.pid"
start_stop_daemon_args="--background --make-pidfile --pidfile ${pidfile}"

depend() {
	use clock logger
	need localmount
}



1.1                  sys-process/cronie/files/cronie-1.3-initd

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/cronie/files/cronie-1.3-initd?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/cronie/files/cronie-1.3-initd?rev=1.1&content-type=text/plain

Index: cronie-1.3-initd
===================================================================
#!/sbin/runscript
# Copyright 1999-2012 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.1 2012/02/13 17:32:34 polynomial-c Exp $

command="/usr/sbin/crond"
command_args="${CRONDARGS}"
pidfile="/var/run/crond.pid"

depend() {
	use clock logger
	need localmount
	provide cron	
}






^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sys-process/cronie/files: anacron-1.0-initd cronie-1.3-initd
@ 2014-03-04  0:17 Lars Wendler (polynomial-c)
  0 siblings, 0 replies; 2+ messages in thread
From: Lars Wendler (polynomial-c) @ 2014-03-04  0:17 UTC (permalink / raw
  To: gentoo-commits

polynomial-c    14/03/04 00:17:58

  Modified:             anacron-1.0-initd cronie-1.3-initd
  Log:
  Fixed pidfile location for non-linux systems
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)

Revision  Changes    Path
1.4                  sys-process/cronie/files/anacron-1.0-initd

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/cronie/files/anacron-1.0-initd?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/cronie/files/anacron-1.0-initd?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/cronie/files/anacron-1.0-initd?r1=1.3&r2=1.4

Index: anacron-1.0-initd
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-process/cronie/files/anacron-1.0-initd,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- anacron-1.0-initd	25 Feb 2014 19:08:17 -0000	1.3
+++ anacron-1.0-initd	4 Mar 2014 00:17:58 -0000	1.4
@@ -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() {



1.3                  sys-process/cronie/files/cronie-1.3-initd

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/cronie/files/cronie-1.3-initd?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/cronie/files/cronie-1.3-initd?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/cronie/files/cronie-1.3-initd?r1=1.2&r2=1.3

Index: cronie-1.3-initd
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-process/cronie/files/cronie-1.3-initd,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- cronie-1.3-initd	25 Feb 2014 19:08:17 -0000	1.2
+++ cronie-1.3-initd	4 Mar 2014 00:17:58 -0000	1.3
@@ -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





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-03-04  0:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-04  0:17 [gentoo-commits] gentoo-x86 commit in sys-process/cronie/files: anacron-1.0-initd cronie-1.3-initd Lars Wendler (polynomial-c)
  -- strict thread matches above, loose matches on Subject: below --
2012-02-13 17:32 Lars Wendler (polynomial-c)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox