diff options
author | Roy Marples <roy@marples.name> | 2008-01-11 12:18:05 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-01-11 12:18:05 +0000 |
commit | 6b41b6500842b2b6bd7f78b4f2ccda579ee1a108 (patch) | |
tree | a57599974eb573de7b12ec118e1c658a527ad3ec /init.d.misc/ntpd.in | |
parent | 3bf49a9bd19d5bbcf6976dd42b4f87f1b173e287 (diff) |
Remove vim settings.
Diffstat (limited to 'init.d.misc/ntpd.in')
-rw-r--r-- | init.d.misc/ntpd.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/init.d.misc/ntpd.in b/init.d.misc/ntpd.in index 1ebd68ee..d8a2d68a 100644 --- a/init.d.misc/ntpd.in +++ b/init.d.misc/ntpd.in @@ -10,13 +10,15 @@ pidfile=/var/run/ntpd.pid command_args="${ntpd_args} -c ${ntpd_config} -f ${ntpd_drift} -p ${pidfile}" name="Network Time Protocol Daemon" -depend() { +depend() +{ use dns need localmount after bootmisc ntp-client } -start_pre() { +start_pre() +{ if [ ! -r "${ntpd_config}" ]; then eerror "${ntpd_config} is not readable" return 1 @@ -36,5 +38,3 @@ start_pre() { command_args="${command_args} -u ntpd:ntpd -i ${ntpd_chroot}" fi } - -# vim: set ts=4 : |