aports/main/busybox/rdate.initd
Laurent Bercot 8262f47378 main/busybox: gather all subpackages under one APKBUILD
As requested, busybox-openrc, busybox-mdev-openrc and
busybox-extras-openrc are not defined in separate
packages, but are now all subpackages of busybox.
Thanks to psykose for the mention of amove!

Signed-off-by: Laurent Bercot <ska@appnovation.com>
2022-09-04 05:49:07 +00:00

18 lines
253 B
Bash

#!/sbin/openrc-run
depend() {
need net
after firewall
keyword -vserver -lxc
}
start() {
if [ -z "$NTP_HOST" ] ; then
eerror "Please set NTP_HOST in /etc/conf.d/rdate"
return 1
fi
ebegin "Running busybox rdate"
rdate "$NTP_HOST"
eend $?
}