Skip to content

Instantly share code, notes, and snippets.

@Kelfitas
Created March 23, 2022 06:15
Show Gist options
  • Save Kelfitas/bca4812dca7e1c4b7ace7cf2f42842dc to your computer and use it in GitHub Desktop.
Save Kelfitas/bca4812dca7e1c4b7ace7cf2f42842dc to your computer and use it in GitHub Desktop.
#!/bin/sh
N=`uname -n`
yum check-update > /tmp/checkupdate.log
if [[ $? == 100 ]]; then
mail -s "New YUM updates available: $N" -r from@example.com to@example.com < /tmp/checkupdate.log
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment