tlsdate.rc 349 B

1234567891011121314151617
  1. #!/sbin/openrc-run
  2. # Copyright 1999-2012 Gentoo Foundation
  3. # Distributed under the terms of the GNU General Public License v2
  4. description="set time once when started"
  5. depend() {
  6. use net
  7. }
  8. start() {
  9. : ${TLSDATE_CMD:=tlsdate}
  10. ebegin "Setting clock via tlsdate '${TLSDATE_CMD}'"
  11. "${TLSDATE_CMD}" ${TLSDATE_OPTS}
  12. eend $? "Failed to set clock"
  13. }