From 5b7efc9513726b80e03da1960353abcd18b98682 Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Sat, 28 Nov 2015 12:07:11 +0100 Subject: reproducible: don't fail if systemd ain't running --- hosts/profitbricks-build5-amd64/etc/rc.local | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'hosts/profitbricks-build5-amd64') 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 -- cgit v1.2.3-70-g09d2