Last active
July 29, 2016 09:27
-
-
Save RubenKelevra/941e0db1932f5434444d0abc7528b055 to your computer and use it in GitHub Desktop.
CentOS reboot on kernel updates
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
LAST_KERNEL=$(rpm -q --last kernel | perl -pe 's/^kernel-(\S+).*/$1/' | head -1) | |
CURRENT_KERNEL=$(uname -r) | |
if [ "$LAST_KERNEL" != "$CURRENT_KERNEL" ]; then | |
logger 'automatic reboot by yum-daily in 10 seconds' | |
sleep 10 | |
sync | |
systemctl reboot& | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment