diff options
author | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2012-08-29 20:45:23 +0000 |
---|---|---|
committer | Bruce Dubbs <bdubbs@linuxfromscratch.org> | 2012-08-29 20:45:23 +0000 |
commit | cb02946abfe632bc90f1eaa302b2d8d4eb73e5c9 (patch) | |
tree | 0a19838c2a1d6b59f976c3138554eb4963bf1903 /lsb-bootscripts/etc/init.d/setclock | |
parent | d7f2eb08dab7e6dd88df0102ec48dce0a301dc5f (diff) |
Lots of spelling fixes.
Delete the no longer used lsb-bootscripts directory
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@9967 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'lsb-bootscripts/etc/init.d/setclock')
-rw-r--r-- | lsb-bootscripts/etc/init.d/setclock | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/lsb-bootscripts/etc/init.d/setclock b/lsb-bootscripts/etc/init.d/setclock deleted file mode 100644 index ab13e62c7..000000000 --- a/lsb-bootscripts/etc/init.d/setclock +++ /dev/null @@ -1,54 +0,0 @@ -#!/bin/sh -# Begin $RC_BASE/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 $RC_BASE/init.d/setclock |