]> git.ipfire.org Git - thirdparty/openwrt.git/commitdiff
base-files: sysupgrade: exclude apk files from backup 22937/head
authorEric Fahlgren <ericfahlgren@gmail.com>
Wed, 15 Apr 2026 01:50:37 +0000 (18:50 -0700)
committerRobert Marko <robimarko@gmail.com>
Thu, 16 Apr 2026 19:22:22 +0000 (21:22 +0200)
Exclude more apk related files from the sysupgrade backup list when
using the various options that scan /etc for changes.

Ensure removal of the system generated distfeeds list, as that
contains kernel- and version-specific urls and should never be
retained.

Also exclude any '*.apk-new' files, equivalent to the old '*-opkg'
files, which may have been created during package installation.

Example before
  $ sysupgrade -l -c | grep apk
  /etc/apk/keys/buildroot.pem
  /etc/apk/repositories.d/customfeeds.list
  /etc/apk/repositories.d/distfeeds.list
  /etc/owut.d/pre-install.sh.apk-new
  /etc/config/adblock.apk-new

After
  $ sysupgrade -l -c | grep apk
  /etc/apk/keys/buildroot.pem
  /etc/apk/repositories.d/customfeeds.list

Signed-off-by: Eric Fahlgren <ericfahlgren@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/22937
Signed-off-by: Robert Marko <robimarko@gmail.com>
package/base-files/files/sbin/sysupgrade

index 12575e0b1fad499ae5859db24d6226062858e739..68ab9c63b3f7747251a71c31e4560937dc132894 100755 (executable)
@@ -224,8 +224,10 @@ build_list_of_backup_overlay_files() {
                -e '\,^/etc/board.json$,d' \
                -e '\,^/etc/luci-uploads/\.placeholder,d' \
                -e '\,/[^/]*-opkg$,d' \
+               -e '\,/[^/]*\.apk-new$,d' \
                -e '\,^/etc/urandom.seed$,d' \
                -e '\,^/etc/apk/world$,d' \
+               -e '\,^/etc/apk/repositories\.d/distfeeds\.list$,d' \
                -e "\,^$INSTALLED_PACKAGES$,d" \
                -e '\,^/usr/lib/opkg/.*,d' \
                -e '\,^/lib/apk/.*,d' \