mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-06 05:47:13 +02:00
14 lines
207 B
Plaintext
Executable File
14 lines
207 B
Plaintext
Executable File
#!/sbin/openrc-run
|
|
|
|
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
|
|
}
|
|
|