mirror of
https://github.com/nextcloud/nextcloudpi.git
synced 2026-01-10 15:12:01 -03:30
ncp-autoupdate-apps: dont fail cron if no updates
Signed-off-by: nachoparker <nacho@ownyourbits.com>
This commit is contained in:
parent
06017a4bcf
commit
81fcd1483a
@ -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"
|
||||
|
||||
@ -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
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user