summaryrefslogtreecommitdiffstats
path: root/main/busybox-initscripts/ntpd.initd
blob: 49138f7816482365b2fb58c62402cd4a7dde0fa7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/sbin/runscript

name="busybox $SVCNAME"
command="/usr/sbin/$SVCNAME"
command_args="${NTPD_OPTS:--N -p pool.ntp.org}"
pidfile="/var/run/$SVCNAME.pid"

depend() {
	need net
	provide ntp-client
	use dns
}