summaryrefslogtreecommitdiffstats
path: root/hosts/profitbricks-build4-amd64/etc/rc.local
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2016-04-28 21:28:15 +0200
committerHolger Levsen <holger@layer-acht.org>2016-04-28 21:28:15 +0200
commit1e096b9b0ffbab56787af481e92a163c0b17cb42 (patch)
treebed0e877d71f91750079d771565d028ef247e707 /hosts/profitbricks-build4-amd64/etc/rc.local
parente0c5a2da13ba9c6291c3ad48b73b8bf00af29556 (diff)
downloadjenkins.debian.net-1e096b9b0ffbab56787af481e92a163c0b17cb42.tar.xz
reproducible openwrt/coreboot/archlinux/fedora/netbsd/freebsd: add new pb-build4-amd64 node
Diffstat (limited to 'hosts/profitbricks-build4-amd64/etc/rc.local')
-rwxr-xr-xhosts/profitbricks-build4-amd64/etc/rc.local23
1 files changed, 23 insertions, 0 deletions
diff --git a/hosts/profitbricks-build4-amd64/etc/rc.local b/hosts/profitbricks-build4-amd64/etc/rc.local
new file mode 100755
index 00000000..8879125c
--- /dev/null
+++ b/hosts/profitbricks-build4-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