Add check-updates script

This commit is contained in:
Timo Makinen 2025-01-15 18:43:44 +00:00
parent 1bc3805ded
commit 7b6edbfe44
2 changed files with 39 additions and 0 deletions

16
scripts/check-updates Executable file
View file

@ -0,0 +1,16 @@
#!/bin/sh
set -eu
if [ $# -eq 1 ]; then
limit="$1"
elif [ $# -ne 0 ]; then
echo "Usage: $(basename "$0") [hostname]" 1>&2
exit 1
else
limit="all"
fi
cd "$(dirname "$0")/.."
ansible-playbook playbooks/manual/check-updates.yml -l "$limit"