diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-09-07 01:29:33 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-09-07 01:29:33 +0200 |
commit | 550638c47d7be6850731a9c6f228e41d0b70efad (patch) | |
tree | 649bb4fb2d4b43724c4656e02cf3eeaabd3e373f /hosts/profitbricks-build4-amd64/etc | |
parent | 687321112c084d720acfeb2f6b3e1f895efb8f2c (diff) | |
download | jenkins.debian.net-550638c47d7be6850731a9c6f228e41d0b70efad.tar.xz |
send mail on reboot for all nodes
Diffstat (limited to 'hosts/profitbricks-build4-amd64/etc')
-rwxr-xr-x | hosts/profitbricks-build4-amd64/etc/rc.local | 16 |
1 files changed, 16 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..9493d09d --- /dev/null +++ b/hosts/profitbricks-build4-amd64/etc/rc.local @@ -0,0 +1,16 @@ +#!/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) - system was rebooted" | mail -s "$(hostname -f) rebooted" root + +exit 0 |