mirror of
https://github.com/rwinkhart/artix-install-script.git
synced 2026-08-28 12:56:26 -04:00
Only sync ntp once per week, sync to hardware clock
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
#!/bin/sh
|
||||
old_timestamp="$(</etc/local.d/.ntpsync)"
|
||||
new_timestamp="$(date +%s)"
|
||||
if [ "$((new_timestamp-old_timestamp))" -gt 604800 ]; then
|
||||
ntpdate -b pool.ntp.org
|
||||
hwclock --systohc --utc
|
||||
echo "$new_timestamp" > /etc/local.d/.ntpsync
|
||||
fi
|
||||
Reference in New Issue
Block a user