mirror of
https://git.linuxfromscratch.org/lfs.git
synced 2025-01-19 13:37:39 +00:00
67de919e34
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@8558 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
62 lines
1.2 KiB
Bash
62 lines
1.2 KiB
Bash
#!/bin/sh
|
|
# Begin /etc/init.d/setclock
|
|
|
|
### BEGIN INIT INFO
|
|
# Provides: $time
|
|
# Required-Start:
|
|
# Should-Start: modules
|
|
# Required-Stop:
|
|
# Should-Stop: $syslog
|
|
# Default-Start: S
|
|
# 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-Default-Start: S25
|
|
# X-LFS-Default-Stop: K46
|
|
# X-LFS-Provided-By: LFS BLFS
|
|
### END INIT INFO
|
|
|
|
. /lib/lsb/init-functions
|
|
|
|
BIN_FILE="/sbin/hwclock"
|
|
CONFIGFILE="/etc/sysconfig/clock"
|
|
|
|
chk_stat
|
|
|
|
. "${CONFIGFILE}"
|
|
|
|
CLOCKPARAMS=
|
|
|
|
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
|