public inbox for gentoo-dev@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-dev] dcron init script
@ 2001-11-14  7:40 Tibor Rudas
  2001-11-14 15:28 ` Martin Schlemmer
  0 siblings, 1 reply; 2+ messages in thread
From: Tibor Rudas @ 2001-11-14  7:40 UTC (permalink / raw
  To: Gentoo Developer List

[-- Attachment #1: Type: text/plain, Size: 165 bytes --]

Hello

Shouldn't the line in the dcron init script which starts crond pipe output
to a logfile (e.g /var/log/cron) as described in the README?

regards

Tibor Rudas

[-- Attachment #2: dcron --]
[-- Type: text/plain, Size: 274 bytes --]

#!/sbin/runscript

depend() {
	need clock
}

start() {
	ebegin "Starting dcron"
	start-stop-daemon --start --quiet --exec /usr/sbin/crond >> /var/log/cron 2>&1
	eend $?
}

stop() {
	ebegin "Stopping dcron"
	start-stop-daemon --stop --quiet --exec /usr/sbin/crond
	eend $?
}

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

* Re: [gentoo-dev] dcron init script
  2001-11-14  7:40 [gentoo-dev] dcron init script Tibor Rudas
@ 2001-11-14 15:28 ` Martin Schlemmer
  0 siblings, 0 replies; 2+ messages in thread
From: Martin Schlemmer @ 2001-11-14 15:28 UTC (permalink / raw
  To: gentoo-dev

[-- Attachment #1: Type: text/plain, Size: 854 bytes --]

On Wed, 2001-11-14 at 15:47, Tibor Rudas wrote:
> Hello
> 
> Shouldn't the line in the dcron init script which starts crond pipe output
> to a logfile (e.g /var/log/cron) as described in the README?
> 
> regards
> 
> Tibor Rudas
> ----
> 

> #!/sbin/runscript
> 
> depend() {
> 	need clock
> }
> 
> start() {
> 	ebegin "Starting dcron"
> 	start-stop-daemon --start --quiet --exec /usr/sbin/crond >> /var/log/cron 2>&1

should actually be:

start-stop-daemon --start --quiet --exec /usr/sbin/crond -- >>
/var/log/cron.log 2>&1


Ill commit when cvs.gentoo.org is up again.  Thanks!

> 	eend $?
> }
> 
> stop() {
> 	ebegin "Stopping dcron"
> 	start-stop-daemon --stop --quiet --exec /usr/sbin/crond
> 	eend $?
> }


-- 

Martin Schlemmer
Gentoo Linux Developer, Desktop Team Developer
Cape Town, South Africa


[-- Attachment #2: Type: application/pgp-signature, Size: 232 bytes --]

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

end of thread, other threads:[~2001-11-14 22:27 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2001-11-14  7:40 [gentoo-dev] dcron init script Tibor Rudas
2001-11-14 15:28 ` Martin Schlemmer

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