13 lines
213 B
Text
13 lines
213 B
Text
|
#!/sbin/openrc-run
|
||
|
|
||
|
name="ntpd"
|
||
|
description="update clock"
|
||
|
command="/usr/sbin/ntpd"
|
||
|
command_user="root"
|
||
|
pidfile="/run/$name.pid"
|
||
|
command_args="-s -p $pidfile"
|
||
|
start_stop_daemon_args=""
|
||
|
|
||
|
|
||
|
# vim: set ft=sh bkc=yes:
|