You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-misc/tlsdate/files/tlsdate.rc

17 lines
349 B

#!/sbin/openrc-run
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
description="set time once when started"
depend() {
use net
}
start() {
: ${TLSDATE_CMD:=tlsdate}
ebegin "Setting clock via tlsdate '${TLSDATE_CMD}'"
"${TLSDATE_CMD}" ${TLSDATE_OPTS}
eend $? "Failed to set clock"
}