9 lines
245 B
Bash
Executable File
9 lines
245 B
Bash
Executable File
#!/bin/bash
|
|
|
|
UPDATES=$(checkupdates --download)
|
|
|
|
if [ ! -z "$(echo -en UPDATES | grep \"linux\")" ]; then
|
|
echo "Updates available!"
|
|
echo -e "Updates are available:\n\n$UPDATES" | $(dirname $0)/mail.sh "Updates are available on $(hostname)"
|
|
fi
|