mirror of
https://github.com/zerotier/edge.git
synced 2026-05-22 16:25:05 -07:00
19 lines
253 B
Plaintext
Executable File
19 lines
253 B
Plaintext
Executable File
#!/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 $?
|
|
}
|
|
|