blob: 950972df868b514ad9f9f49e75d349ecd048f2bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/sbin/openrc-run
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
description="Synchronizes local system with time offered by remote webservers over HTTP"
pidfile="/run/htpdate.pid"
command="/usr/sbin/htpdate"
command_args="${HTPDATE_OPTS} ${PROXY} ${SERVERS}"
depend() {
need net
use dns logger
}
start_pre() {
if [ -z "${SERVERS}" ] ; then
eerror "You need to set at least one http server to use in /etc/conf.d/htpdate"
return 1
fi
}
|