diff options
author | dougb <dougb@FreeBSD.org> | 2001-01-21 20:57:38 +0000 |
---|---|---|
committer | dougb <dougb@FreeBSD.org> | 2001-01-21 20:57:38 +0000 |
commit | e3a3551537ca32bc0adadc0633a5b0320168e716 (patch) | |
tree | 5066b091b85927859ae39dfb8f8c03a72e4ab82f /etc/rc | |
parent | 937122ae6dc02a639d13dd06132201548bd7364f (diff) | |
download | FreeBSD-src-e3a3551537ca32bc0adadc0633a5b0320168e716.zip FreeBSD-src-e3a3551537ca32bc0adadc0633a5b0320168e716.tar.gz |
Add the options of which cron program to run, and specifying flags
to it.
PR: conf/24358
Submitted by: Gerhard Sittig <Gerhard.Sittig@gmx.net>
Diffstat (limited to 'etc/rc')
-rw-r--r-- | etc/rc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -526,7 +526,7 @@ case ${cron_enable} in [Nn][Oo]) ;; *) - echo -n ' cron'; cron + echo -n ' cron'; ${cron_program:-/usr/sbin/cron} ${cron_flags} ;; esac |