2013-12-22 02:21:11 +05:30
|
|
|
#!@SBINDIR@/openrc-run
|
2015-12-05 04:22:19 +05:30
|
|
|
# Copyright (c) 2007-2015 The OpenRC Authors.
|
|
|
|
# See the Authors file at the top-level directory of this distribution and
|
|
|
|
# https://github.com/OpenRC/openrc/blob/master/AUTHORS
|
|
|
|
#
|
|
|
|
# This file is part of OpenRC. It is subject to the license terms in
|
|
|
|
# the LICENSE file found in the top-level directory of this
|
|
|
|
# distribution and at https://github.com/OpenRC/openrc/blob/master/LICENSE
|
|
|
|
# This file may not be copied, modified, propagated, or distributed
|
|
|
|
# except according to the terms contained in the LICENSE file.
|
2007-11-14 20:52:04 +05:30
|
|
|
|
2007-11-20 23:49:48 +05:30
|
|
|
extra_commands="save show"
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2011-01-17 15:19:07 +05:30
|
|
|
description="Sets the local clock to UTC or Local Time."
|
2007-07-11 00:39:41 +05:30
|
|
|
description_save="Saves the current time in the BIOS."
|
2007-10-24 14:20:14 +05:30
|
|
|
description_show="Displays the current time in the BIOS."
|
2007-07-11 00:39:41 +05:30
|
|
|
|
2009-04-27 13:21:18 +05:30
|
|
|
: ${clock_adjfile:=${CLOCK_ADJFILE}}
|
|
|
|
: ${clock_args:=${CLOCK_OPTS}}
|
|
|
|
: ${clock_systohc:=${CLOCK_SYSTOHC}}
|
|
|
|
: ${clock:=${CLOCK:-UTC}}
|
|
|
|
if [ "$clock" = "UTC" ]; then
|
2007-12-14 19:42:38 +05:30
|
|
|
utc="UTC"
|
|
|
|
utc_cmd="--utc"
|
|
|
|
else
|
|
|
|
utc="Local Time"
|
|
|
|
utc_cmd="--localtime"
|
|
|
|
fi
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
depend()
|
|
|
|
{
|
2008-03-25 19:36:05 +05:30
|
|
|
provide clock
|
2016-08-19 02:55:56 +05:30
|
|
|
want modules
|
2009-04-27 13:21:18 +05:30
|
|
|
if yesno $clock_adjfile; then
|
2008-01-31 23:31:20 +05:30
|
|
|
use root
|
2007-10-24 04:19:21 +05:30
|
|
|
else
|
|
|
|
before *
|
|
|
|
fi
|
2016-07-31 23:31:17 +05:30
|
|
|
keyword -docker -lxc -openvz -prefix -systemd-nspawn -uml -vserver -xenu
|
2007-04-05 16:48:42 +05:30
|
|
|
}
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
setupopts()
|
|
|
|
{
|
2008-02-19 19:59:20 +05:30
|
|
|
case "$(uname -m)" in
|
|
|
|
s390*)
|
|
|
|
utc="s390"
|
2007-04-05 16:48:42 +05:30
|
|
|
;;
|
|
|
|
*)
|
2008-02-19 19:59:20 +05:30
|
|
|
if [ -e /proc/devices ] && \
|
|
|
|
grep -q " cobd$" /proc/devices
|
|
|
|
then
|
|
|
|
utc="coLinux"
|
|
|
|
fi
|
2007-04-05 16:48:42 +05:30
|
|
|
;;
|
|
|
|
esac
|
2007-12-14 19:42:38 +05:30
|
|
|
|
2009-04-27 13:21:18 +05:30
|
|
|
case "$utc" in
|
2007-12-14 19:42:38 +05:30
|
|
|
UTC|Local" "Time);;
|
|
|
|
*) unset utc_cmd;;
|
|
|
|
esac
|
2007-04-05 16:48:42 +05:30
|
|
|
}
|
|
|
|
|
2008-01-08 20:28:56 +05:30
|
|
|
# hwclock doesn't always return non zero on error
|
2008-01-11 17:43:46 +05:30
|
|
|
_hwclock()
|
|
|
|
{
|
2008-01-08 20:28:56 +05:30
|
|
|
local err="$(hwclock "$@" 2>&1 >/dev/null)"
|
|
|
|
|
2009-04-27 13:21:18 +05:30
|
|
|
[ -z "$err" ] && return 0
|
2008-01-08 20:28:56 +05:30
|
|
|
echo "${err}" >&2
|
|
|
|
return 1
|
|
|
|
}
|
|
|
|
|
2016-07-06 21:10:31 +05:30
|
|
|
get_noadjfile()
|
|
|
|
{
|
|
|
|
if ! yesno $clock_adjfile; then
|
|
|
|
# Some implementations don't handle adjustments
|
|
|
|
if LC_ALL=C hwclock --help 2>&1 | grep -q "\-\-noadjfile"; then
|
|
|
|
echo --noadjfile
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
start()
|
|
|
|
{
|
2016-08-19 02:55:56 +05:30
|
|
|
local retval=0 errstr="" modname
|
2007-04-05 16:48:42 +05:30
|
|
|
setupopts
|
|
|
|
|
2009-04-27 13:21:18 +05:30
|
|
|
if [ -z "$utc_cmd" ]; then
|
|
|
|
ewarn "Not setting clock for $utc system"
|
2008-01-04 18:20:04 +05:30
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
2009-04-27 13:21:18 +05:30
|
|
|
ebegin "Setting system clock using the hardware clock [$utc]"
|
2008-10-26 12:39:02 +05:30
|
|
|
if [ -e /proc/modules ]; then
|
|
|
|
local rtc=
|
|
|
|
for rtc in /dev/rtc /dev/rtc[0-9]*; do
|
2009-04-27 13:21:18 +05:30
|
|
|
[ -e "$rtc" ] && break
|
2008-10-26 12:39:02 +05:30
|
|
|
done
|
|
|
|
if [ ! -e "${rtc}" ]; then
|
2016-08-19 02:55:56 +05:30
|
|
|
for x in rtc-cmos rtc genrtc; do
|
|
|
|
modprobe -q $x && modname=$x && break
|
|
|
|
done
|
|
|
|
[ -n "$modname" ] &&
|
|
|
|
ewarn "The $modname module needs to be configured in \
|
|
|
|
@SYSCONFDIR@/conf.d/modules or built in."
|
2008-10-26 12:39:02 +05:30
|
|
|
fi
|
2008-01-04 18:20:04 +05:30
|
|
|
fi
|
2007-10-24 04:19:21 +05:30
|
|
|
|
2014-07-24 02:49:25 +05:30
|
|
|
# Always set the kernel's time zone.
|
2016-07-06 21:10:31 +05:30
|
|
|
_hwclock --systz $utc_cmd $(get_noadjfile) $clock_args
|
2014-07-24 02:49:25 +05:30
|
|
|
: $(( retval += $? ))
|
|
|
|
|
2009-04-27 13:21:18 +05:30
|
|
|
if [ -e /etc/adjtime ] && yesno $clock_adjfile; then
|
2016-07-06 21:10:31 +05:30
|
|
|
_hwclock --adjust $utc_cmd $(get_noadjfile)
|
2011-11-11 08:16:08 +05:30
|
|
|
: $(( retval += $? ))
|
2007-10-24 04:19:21 +05:30
|
|
|
fi
|
2011-01-17 15:19:07 +05:30
|
|
|
|
2014-07-24 02:49:25 +05:30
|
|
|
if yesno ${clock_hctosys:-YES}; then
|
2016-07-06 21:10:31 +05:30
|
|
|
_hwclock --hctosys $utc_cmd $(get_noadjfile) $clock_args
|
2011-11-11 08:16:08 +05:30
|
|
|
: $(( retval += $? ))
|
2008-01-04 18:20:04 +05:30
|
|
|
fi
|
2011-01-17 15:19:07 +05:30
|
|
|
|
2009-04-27 13:21:18 +05:30
|
|
|
eend $retval "Failed to set the system clock"
|
2007-04-05 16:48:42 +05:30
|
|
|
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
stop()
|
|
|
|
{
|
2007-04-05 16:48:42 +05:30
|
|
|
# Don't tweak the hardware clock on LiveCD halt.
|
2009-04-27 13:21:18 +05:30
|
|
|
[ -n "$CDBOOT" ] && return 0
|
2012-02-18 02:32:10 +05:30
|
|
|
yesno ${clock_systohc:-YES} || return 0
|
2007-04-05 16:48:42 +05:30
|
|
|
|
2007-12-14 19:42:38 +05:30
|
|
|
local retval=0 errstr=""
|
2007-04-05 16:48:42 +05:30
|
|
|
setupopts
|
|
|
|
|
2009-04-27 13:21:18 +05:30
|
|
|
[ -z "$utc_cmd" ] && return 0
|
2008-01-04 18:20:04 +05:30
|
|
|
|
2009-04-27 13:21:18 +05:30
|
|
|
ebegin "Setting hardware clock using the system clock" "[$utc]"
|
2008-01-08 20:28:56 +05:30
|
|
|
|
2016-07-06 21:10:31 +05:30
|
|
|
_hwclock --systohc $utc_cmd $(get_noadjfile) $clock_args
|
2008-01-08 20:28:56 +05:30
|
|
|
retval=$?
|
|
|
|
|
2011-01-17 15:19:07 +05:30
|
|
|
eend $retval "Failed to sync clocks"
|
2007-04-05 16:48:42 +05:30
|
|
|
}
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
save()
|
|
|
|
{
|
2009-04-27 13:21:18 +05:30
|
|
|
clock_systohc=yes
|
2007-04-05 16:48:42 +05:30
|
|
|
stop
|
|
|
|
}
|
|
|
|
|
2008-01-11 17:43:46 +05:30
|
|
|
show()
|
|
|
|
{
|
2007-10-24 12:56:05 +05:30
|
|
|
setupopts
|
2016-07-06 21:10:31 +05:30
|
|
|
hwclock --show "$utc_cmd" $(get_noadjfile) $clock_args
|
2007-10-24 12:56:05 +05:30
|
|
|
}
|