From cb95d5f23b3c5b803f83a38f09d654bd9924f421 Mon Sep 17 00:00:00 2001 From: DJ Lucas Date: Sat, 14 May 2011 19:41:18 +0000 Subject: Changed distribution directory structure. git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9530 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689 --- bootscripts/contrib/lsb-v3/etc/init.d/setclock | 54 ++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 bootscripts/contrib/lsb-v3/etc/init.d/setclock (limited to 'bootscripts/contrib/lsb-v3/etc/init.d/setclock') diff --git a/bootscripts/contrib/lsb-v3/etc/init.d/setclock b/bootscripts/contrib/lsb-v3/etc/init.d/setclock new file mode 100644 index 000000000..5d47b8dc8 --- /dev/null +++ b/bootscripts/contrib/lsb-v3/etc/init.d/setclock @@ -0,0 +1,54 @@ +#!/bin/sh +# Begin /etc/init.d/setclock + +### BEGIN INIT INFO +# Provides: hwclock +# Required-Start: +# Should-Start: modules +# Required-Stop: +# Should-Stop: $syslog +# Default-Start: +# Default-Stop: +# Short-Description: Stores and restores time from the hardware clock +# Description: On boot, system time is obtained from hwclock. The +# hardware clock can also be set on shutdown. +# X-LFS-Provided-By: LFS BLFS +### END INIT INFO + +. /lib/lsb/init-functions + +BIN_FILE="/sbin/hwclock" + +chk_stat + +case "${UTC}" in + yes|true|1) + CLOCKPARAMS="${CLOCKPARAMS} --utc" + ;; + + no|false|0) + CLOCKPARAMS="${CLOCKPARAMS} --localtime" + ;; + +esac + +case ${1} in + start) + message="Setting system clock..." + ${BIN_FILE} --hctosys ${CLOCKPARAMS} >/dev/null + evaluate_retval standard + ;; + + stop) + message="Setting hardware clock..." + ${BIN_FILE} --systohc ${CLOCKPARAMS} >/dev/null + evaluate_retval standard + ;; + + *) + echo "Usage: ${0} {start|stop}" + ;; + +esac + +# End /etc/init.d/setclock -- cgit v1.2.3-54-g00ecf