[package] base-files: sysupgrade: merge info from "opkg list-changed-conffiles" to...
[openwrt.git] / package / base-files / files / sbin / sysupgrade
index 0fb0753..1210e6e 100755 (executable)
@@ -55,8 +55,9 @@ EOF
 
 add_uci_conffiles() {
        local file="$1"
-       find /etc/config /etc/passwd /etc/group /etc/dropbear \
-               /etc/firewall.user /etc/rc.local -type f > "$file"
+       ( find /etc/config /etc/passwd /etc/group /etc/dropbear \
+               /etc/firewall.user /etc/rc.local -type f;
+         opkg list-changed-conffiles ) | sort -u > "$file"
        return 0
 }
 
This page took 0.025292 seconds and 4 git commands to generate.