summaryrefslogtreecommitdiffstats
path: root/hosts/profitbricks-build7-amd64/etc/rc.local
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2016-09-23 16:27:41 +0200
committerHolger Levsen <holger@layer-acht.org>2016-09-23 16:27:41 +0200
commitf67358c9b2366feeb06b91f05f14aa417804a9a9 (patch)
tree56a653dfa7858d6084ceef0d72e04c49e900b7de /hosts/profitbricks-build7-amd64/etc/rc.local
parent5c4cc3bc953341d3f217a3d882a45e9f58649c43 (diff)
downloadjenkins.debian.net-f67358c9b2366feeb06b91f05f14aa417804a9a9.tar.xz
reproducible F-Droid: add new host, profitbricks-build7-amd64 to build F-Droid on a stretch system
Diffstat (limited to 'hosts/profitbricks-build7-amd64/etc/rc.local')
-rwxr-xr-xhosts/profitbricks-build7-amd64/etc/rc.local23
1 files changed, 23 insertions, 0 deletions
diff --git a/hosts/profitbricks-build7-amd64/etc/rc.local b/hosts/profitbricks-build7-amd64/etc/rc.local
new file mode 100755
index 00000000..8879125c
--- /dev/null
+++ b/hosts/profitbricks-build7-amd64/etc/rc.local
@@ -0,0 +1,23 @@
+#!/bin/sh -e
+#
+# rc.local
+#
+# This script is executed at the end of each multiuser runlevel.
+# Make sure that the script will "exit 0" on success or any other
+# value on error.
+#
+# In order to enable or disable this script just change the execution
+# bits.
+#
+# By default this script does nothing.
+
+echo "$(date -u) - system was rebooted" | mail -s "$(hostname -f) rebooted" root
+
+# 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
+
+exit 0