]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - src/initscripts/init.d/ntp
SquashFS hinzugefuegt damit wir auf OpenVZ-Maschinen bauen koennen.
[people/pmueller/ipfire-2.x.git] / src / initscripts / init.d / ntp
1 #!/bin/sh
2 # Begin $rc_base/init.d/ntp
3
4 #$LastChangedBy: bdubbs $
5 #$Date: 2005-08-01 14:29:19 -0500 (Mon, 01 Aug 2005) $
6
7 . /etc/sysconfig/rc
8 . $rc_functions
9
10 case "$1" in
11 start)
12 boot_mesg "Starting ntpd..."
13 ntpd -gqx
14 loadproc /usr/bin/ntpd
15 ;;
16
17 stop)
18 boot_mesg "Stopping ntpd..."
19 killproc /usr/bin/ntpd
20 ;;
21
22 restart)
23 $0 stop
24 sleep 1
25 $0 start
26 ;;
27
28 status)
29 statusproc /usr/bin/ntpd
30 ;;
31
32 *)
33 echo "Usage: $0 {start|stop|restart|status}"
34 exit 1
35 ;;
36 esac
37
38 # End $rc_base/init.d/ntp