aboutsummaryrefslogtreecommitdiff
path: root/adjtime.cron
diff options
context:
space:
mode:
Diffstat (limited to 'adjtime.cron')
-rwxr-xr-xadjtime.cron15
1 files changed, 0 insertions, 15 deletions
diff --git a/adjtime.cron b/adjtime.cron
deleted file mode 100755
index 8a894f1..0000000
--- a/adjtime.cron
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/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