Skip to content

Instantly share code, notes, and snippets.

@RubenKelevra
Last active July 29, 2016 09:27
Show Gist options
  • Save RubenKelevra/941e0db1932f5434444d0abc7528b055 to your computer and use it in GitHub Desktop.
Save RubenKelevra/941e0db1932f5434444d0abc7528b055 to your computer and use it in GitHub Desktop.
CentOS reboot on kernel updates
#!/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