12 lines
213 B
Bash
Executable file
12 lines
213 B
Bash
Executable file
#!/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:
|