summaryrefslogtreecommitdiffstats
path: root/hosts/profitbricks-build15-amd64
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2017-01-21 11:24:46 +0100
committerHolger Levsen <holger@layer-acht.org>2017-01-21 11:24:46 +0100
commit9be2b23d7960a4cc9317e36fbc00f90f92c53e5c (patch)
tree58fa4c8bf6bbe21844c3d800bfa9fbd5741c36eb /hosts/profitbricks-build15-amd64
parent327478e4785753238e48055d20452d3c9136b6a5 (diff)
downloadjenkins.debian.net-9be2b23d7960a4cc9317e36fbc00f90f92c53e5c.tar.xz
reproducible Debian: refactor, use one common rc.local script for all hosts
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'hosts/profitbricks-build15-amd64')
-rwxr-xr-xhosts/profitbricks-build15-amd64/etc/rc.local85
1 files changed, 67 insertions, 18 deletions
diff --git a/hosts/profitbricks-build15-amd64/etc/rc.local b/hosts/profitbricks-build15-amd64/etc/rc.local
index b3a760e4..8fb854c5 100755
--- a/hosts/profitbricks-build15-amd64/etc/rc.local
+++ b/hosts/profitbricks-build15-amd64/etc/rc.local
@@ -8,26 +8,75 @@
#
# In order to enable or disable this script just change the execution
# bits.
+
+send_back_to_the_future() {
+ # stop ntp
+ service ntp stop || true
+ # 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 || 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"
+ # 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 -u) - system is running in the future now" | mail -s "$(hostname -f) in the future" root
+}
+
+put_schroots_on_tmpfs() {
+ # keep schroot sessions on tmpfs
+ [ -L /var/lib/schroot ] || echo "$(date -u) - /var/lib/schroot is not a link (to /srv/workspace/varlibschroot/) as it should, please fix manually"
+ mkdir -p /srv/workspace/varlibschroot
+ cd /srv/workspace/varlibschroot || exit 1
+ mkdir -p mount session union unpack
+ mkdir -p union/overlay union/underlay
+}
+
#
-# By default this script does nothing.
+# init, notify about reboots
+#
+MESSAGE="$(hostname -f) rebooted"
+echo "$(date -u) - system was rebooted" | mail -s "$MESSAGE" root
-echo "$(date -u) - system was rebooted" | mail -s "$(hostname -f) rebooted" root
+#
+# notify jenkins reboots on irc
+#
+if [ "$(hostname)" = "jenkins" ] ; then
+ for channel in debian-qa debian-reproducible ; do
+ kgb-client --conf /srv/jenkins/kgb/$channel.conf --relay-msg "$MESSAGE"
+ done
+fi
-# stop ntp
-service ntp stop || true
-# 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 || 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"
-# 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 -u) - system is running in the future now" | mail -s "$(hostname -f) in the future" root
+#
+# run some hosts in the future
+#
+case $(hostname) in
+ codethink-sled9*) send_back_to_the_future ;;
+ codethink-sled11*) send_back_to_the_future ;;
+ codethink-sled13*) send_back_to_the_future ;;
+ codethink-sled15*) send_back_to_the_future ;;
+ profitbricks-build4*) send_back_to_the_future ;;
+ profitbricks-build5*) send_back_to_the_future ;;
+ profitbricks-build6*) send_back_to_the_future ;;
+ profitbricks-build15*) send_back_to_the_future ;;
+ profitbricks-build16*) send_back_to_the_future ;;
+ *) ;;
+esac
+
+#
+# put schroots on tmpfs for non debian hosts
+#
+case $(hostname) in
+ profitbricks-build3*) put_schroots_on_tmpfs ;;
+ profitbricks-build4*) put_schroots_on_tmpfs ;;
+ profitbricks-build7*) put_schroots_on_tmpfs ;;
+ *) ;;
+esac
+echo "$(date -u) - system booted up."
exit 0