diff options
author | DJ Lucas <dj@linuxfromscratch.org> | 2011-05-15 03:17:07 +0000 |
---|---|---|
committer | DJ Lucas <dj@linuxfromscratch.org> | 2011-05-15 03:17:07 +0000 |
commit | 63a2c2d454e05553cb83f3656108838f46975ba6 (patch) | |
tree | 1a025d83023b0dcd87259c0b78818b3e2c338692 /bootscripts/contrib/lsb-v3/etc/init.d/setclock | |
parent | dcae1d7df3deb6ae9a24b90d83f66feff49c93b0 (diff) |
Moved BOOK/bootscripts/contrib/lsb-v3 to BOOK/lsb-bootscripts.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9538 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'bootscripts/contrib/lsb-v3/etc/init.d/setclock')
-rw-r--r-- | bootscripts/contrib/lsb-v3/etc/init.d/setclock | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/bootscripts/contrib/lsb-v3/etc/init.d/setclock b/bootscripts/contrib/lsb-v3/etc/init.d/setclock deleted file mode 100644 index 5d47b8dc8..000000000 --- a/bootscripts/contrib/lsb-v3/etc/init.d/setclock +++ /dev/null @@ -1,54 +0,0 @@ -#!/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 |