summaryrefslogtreecommitdiffstats
path: root/hosts/profitbricks-build5-amd64
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/profitbricks-build5-amd64')
-rwxr-xr-xhosts/profitbricks-build5-amd64/etc/rc.local10
1 files changed, 7 insertions, 3 deletions
diff --git a/hosts/profitbricks-build5-amd64/etc/rc.local b/hosts/profitbricks-build5-amd64/etc/rc.local
index 32343784..f1e902d2 100755
--- a/hosts/profitbricks-build5-amd64/etc/rc.local
+++ b/hosts/profitbricks-build5-amd64/etc/rc.local
@@ -13,15 +13,19 @@
echo "$(date) - system was rebooted" | mail -s "$(hostname -f) rebooted" root
+# disable systemd date services (and don't fail if systemd ain't running)
systemctl disable systemd-timesyncd
systemctl disable systemd-timedated
-systemctl stop systemd-timesyncd
-systemctl stop systemd-timedated
+systemctl stop systemd-timesyncd || true
+systemctl stop systemd-timedated || true
+# set correct date
ntpdate -b de.pool.ntp.org
+# set fake date
date --set="+398 days +6 hours + 23 minutes"
-echo "$(date) - system is running in the future now" | mail -s "$(hostname -f) in the future" root
# disable check for outdated packages as in the future (like this)
# packages from security.d.o will appear outdated always…
ln -sf /bin/true /usr/local/bin/dsa-check-packages
+# finally report success
+echo "$(date) - system is running in the future now" | mail -s "$(hostname -f) in the future" root
exit 0