check_ucs_update erstellt

This commit is contained in:
2018-12-14 22:48:39 +01:00
parent 534af414e7
commit e5216addaf
3 changed files with 16 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
#!/bin/bash
if sudo univention-upgrade --enable-app-updates --check > /dev/null
then
echo "updates vorhanden"
exit 1
else
echo "keine Updates vorhanden"
exit 0
fi