mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-23 00:32:22 +01:00
The bundled file should not be executable. install will make it executable at packaging time.
14 lines
207 B
Bash
14 lines
207 B
Bash
#!/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
|
|
}
|
|
|