14 lines
372 B
Plaintext
14 lines
372 B
Plaintext
|
#!/sbin/runscript
|
||
|
# Copyright 1999-2012 Gentoo Foundation
|
||
|
# Distributed under the terms of the GNU General Public License v2
|
||
|
# $Header: /var/cvsroot/gentoo-x86/sys-apps/busybox/files/ntpd.initd,v 1.2 2012/12/21 03:15:28 blueness Exp $
|
||
|
|
||
|
command="/bin/busybox ntpd"
|
||
|
command_args="${NTPD_OPTS}"
|
||
|
pidfile="/var/run/ntpd.pid"
|
||
|
|
||
|
depend() {
|
||
|
use net dns logger
|
||
|
after ntp-client
|
||
|
}
|