ncp-autoupdate-apps: dont fail cron if no updates

Signed-off-by: nachoparker <nacho@ownyourbits.com>
This commit is contained in:
nachoparker 2020-08-02 10:44:07 -06:00
parent 06017a4bcf
commit 81fcd1483a
2 changed files with 7 additions and 4 deletions

View File

@ -8,11 +8,11 @@
# More at: https://ownyourbits.com
#
configure()
configure()
{
local cronfile=/etc/cron.daily/ncp-autoupdate-apps
[[ "$ACTIVE" != "yes" ]] && {
[[ "$ACTIVE" != "yes" ]] && {
rm -f "$cronfile"
echo "automatic app updates disabled"
return 0
@ -29,7 +29,8 @@ echo "checking for updates..."
echo "\$OUT" >> /var/log/ncp.log
APPS=\$( echo "\$OUT" | grep 'updated\$' | awk '{ print \$1 }')
[[ "\$APPS" != "" ]] && notify_admin "Apps updated" "\$APPS"
[[ "\$APPS" == "" ]] && exit 0
notify_admin "Apps updated" "\$APPS"
EOF
chmod 755 "$cronfile"
echo "automatic app updates enabled"

View File

@ -1,5 +1,7 @@
[v1.28.2](https://github.com/nextcloud/nextcloudpi/commit/a2e6356) (2020-08-02) nc-limits: adjust db size
[v1.28.3](https://github.com/nextcloud/nextcloudpi/commit/cb25e3f) (2020-08-02) ncp-autoupdate-apps: dont fail cron if no updates
[v1.28.2](https://github.com/nextcloud/nextcloudpi/commit/06017a4) (2020-08-02) nc-limits: adjust db size
[v1.28.1](https://github.com/nextcloud/nextcloudpi/commit/dda010b) (2020-08-02) nc-ramlogs: pin version