blob: ebe857af4afd7f8c090ec4f9a843cf4bd1586619 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/sbin/openrc-run
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
name="sntpd"
pidfile="/run/sntpd.pid"
command="/usr/sbin/sntpd"
command_args="-n ${SNTPD_OPTS}"
command_background="true"
depend() {
use net dns logger
}
|