Laurent Bercot 31c569e80f main/busybox-initscripts: fix ntpd.init source permission
The bundled file should not be executable.
install will make it executable at packaging time.
2022-05-16 17:55:43 +02:00

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
}