mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
15 lines
328 B
Bash
Executable file
15 lines
328 B
Bash
Executable file
#!/bin/bash
|
|
# Update our hwclock for system drift
|
|
|
|
. /etc/rc.conf
|
|
|
|
HWCLOCK_PARAMS="--adjust"
|
|
case $HARDWARECLOCK in
|
|
UTC) HWCLOCK_PARAMS+=" --utc";;
|
|
localtime) HWCLOCK_PARAMS+=" --localtime";;
|
|
*) HWCLOCK_PARAMS="";;
|
|
esac
|
|
|
|
if [[ $HWCLOCK_PARAMS && -f /run/daemons/hwclock ]]; then
|
|
/sbin/hwclock $HWCLOCK_PARAMS
|
|
fi
|