File tree Expand file tree Collapse file tree 3 files changed +28
-3
lines changed
Expand file tree Collapse file tree 3 files changed +28
-3
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ Unattended-Upgrade::Automatic-Reboot-Time "04:00";
3333Unattended-Upgrade::Origins-Pattern {
3434o=Debian,n=$RELEASE ;
3535o=deb.sury.org,n=$RELEASE ;
36- o="Raspberry Pi Foundation ",n=$RELEASE ;
36+ o="Raspbian ",n=$RELEASE ;
3737}
3838Dpkg::Options {
3939 "--force-confdef";
Original file line number Diff line number Diff line change 11
2- [ v1.34.0 ] ( https://github.com/nextcloud/nextcloudpi/commit/68181eb ) (2021-01-01) upgrade to NC20.0.4
2+ [ v1.34.1 ] ( https://github.com/nextcloud/nextcloudpi/commit/37c2e4f ) (2021-01-01) unattended-upgrades: fix raspbian origin
33
4- [ v1.33.2] ( https://github.com/nextcloud/nextcloudpi/commit/08e5a36 ) (2021-01-01) ncp-config: fix empty values
4+ [ v1.34.0] ( https://github.com/nextcloud/nextcloudpi/commit/ec428a2 ) (2021-01-01) upgrade to NC20.0.4
5+
6+ [ v1.33.2 ] ( https://github.com/nextcloud/nextcloudpi/commit/82d00c8 ) (2021-01-01) ncp-config: fix empty values
57
68[ v1.33.1 ] ( https://github.com/nextcloud/nextcloudpi/commit/42fd597 ) (2020-12-12) nc-update-nc: improve error messages
79
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ set -e
4+
5+ # # BACKWARD FIXES ( for older images )
6+
7+ source /usr/local/etc/library.sh # sets NCVER PHPVER RELEASE
8+
9+ # all images
10+
11+ is_active_app unattended-upgrades && run_app unattended-upgrades
12+
13+ # docker images only
14+ [[ -f /.docker-image ]] && {
15+ :
16+ }
17+
18+ # for non docker images
19+ [[ ! -f /.docker-image ]] && {
20+ :
21+ }
22+
23+ exit 0
You can’t perform that action at this time.
0 commit comments