summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_maintenance.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2017-01-13 18:24:05 +0100
committerHolger Levsen <holger@layer-acht.org>2017-01-13 18:24:05 +0100
commit8246c19944970eedc8d8f79a2f94bdc13d8dc798 (patch)
tree8fbd2148fcb1a3a5ddb394386bd849cf0cbf7de7 /bin/reproducible_maintenance.sh
parent234fae048670d0aee68ec2e3066da0f7ff695d77 (diff)
downloadjenkins.debian.net-8246c19944970eedc8d8f79a2f94bdc13d8dc798.tar.xz
reproducible Debian: only emit warnings if shm is not mounted correctly
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin/reproducible_maintenance.sh')
-rwxr-xr-xbin/reproducible_maintenance.sh6
1 files changed, 2 insertions, 4 deletions
diff --git a/bin/reproducible_maintenance.sh b/bin/reproducible_maintenance.sh
index e4cae586..6130901d 100755
--- a/bin/reproducible_maintenance.sh
+++ b/bin/reproducible_maintenance.sh
@@ -76,17 +76,15 @@ fi
echo "$(date -u) - testing whether /dev/shm is mounted correctly..."
mount | egrep -q "^tmpfs on /dev/shm" && test "$(stat -c %a -L /dev/shm)" = 1777
if [ $? -ne 0 ] ; then
- irc_message debian-reproducible "/dev/shm is not mounted correctly on $HOSTNAME, please tell the jenkins admins to fix this."
+ irc_message debian-reproducible "Warning: /dev/shm is not mounted correctly on $HOSTNAME, please tell the jenkins admins to fix this."
show_fstab_and_mounts
- exit 1
fi
# check for /run/shm being mounted properly
echo "$(date -u) - testing whether /run/shm is mounted correctly..."
mount | egrep -q "^tmpfs on /run/shm" && test "$(stat -c %a -L /run/shm)" = 1777
if [ $? -ne 0 ] ; then
- irc_message debian-reproducible "/run/shm is not mounted correctly on $HOSTNAME, please tell the jenkins admins to fix this."
+ irc_message debian-reproducible "Warning: /run/shm is not mounted correctly on $HOSTNAME, please tell the jenkins admins to fix this."
show_fstab_and_mounts
- exit 1
fi
echo "$(date -u) - updating the schroots and pbuilder now..."