summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_maintenance.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2017-01-14 22:22:25 +0100
committerHolger Levsen <holger@layer-acht.org>2017-01-14 22:22:25 +0100
commitebdf02023335802d6b5110d748769a558f9c370d (patch)
tree60d8c67e57359c58e66d4a01b0d3419192cc3fa0 /bin/reproducible_maintenance.sh
parent73ebc6562f26987015894401436d70a3feb11b29 (diff)
downloadjenkins.debian.net-ebdf02023335802d6b5110d748769a558f9c370d.tar.xz
reproducible Debian: disable irc notifications for shm problems
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin/reproducible_maintenance.sh')
-rwxr-xr-xbin/reproducible_maintenance.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_maintenance.sh b/bin/reproducible_maintenance.sh
index 6130901d..6386c2a2 100755
--- a/bin/reproducible_maintenance.sh
+++ b/bin/reproducible_maintenance.sh
@@ -76,14 +76,14 @@ 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 "Warning: /dev/shm is not mounted correctly on $HOSTNAME, please tell the jenkins admins to fix this."
+ echo "Warning: /dev/shm is not mounted correctly on $HOSTNAME, please tell the jenkins admins to fix this."
show_fstab_and_mounts
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 "Warning: /run/shm is not mounted correctly on $HOSTNAME, please tell the jenkins admins to fix this."
+ echo "Warning: /run/shm is not mounted correctly on $HOSTNAME, please tell the jenkins admins to fix this."
show_fstab_and_mounts
fi