~ubuntu-branches/ubuntu/jaunty/cron/jaunty-updates

« back to all changes in this revision

Viewing changes to debian/cron.init

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2005-11-15 12:58:26 UTC
  • Revision ID: james.westby@ubuntu.com-20051115125826-aa42nf05d52frf4w
Tags: 3.0pl1-92ubuntu1
Resynchronise with Debian.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/bin/sh
2
2
# Start/stop the cron daemon.
 
3
#
 
4
### BEGIN INIT INFO
 
5
# Provides:          cron
 
6
# Required-Start:    $syslog $time
 
7
# Required-Stop:     $syslog $time
 
8
# Default-Start:     2 3 4 5
 
9
# Default-Stop:      S 0 1 6
 
10
# Short-Description: Regular background program processing daemon
 
11
# Description:       cron is a standard UNIX program that runs user-specified 
 
12
#                    programs at periodic scheduled times. vixie cron adds a 
 
13
#                    number of features to the basic UNIX cron, including better
 
14
#                    security and more powerful configuration options.
 
15
 
 
16
### END INIT INFO
 
17
 
3
18
 
4
19
test -f /usr/sbin/cron || exit 0
5
20