diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2009-11-20 23:02:35 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2009-11-20 23:02:35 +0000 |
commit | 8151a5f6daad1cc7a7970c52f8473b903807e591 (patch) | |
tree | 8b0a2bce0474e18b547c9d235f8360ba39c59f53 /package/base-files/files/sbin | |
parent | 6e68fac20692f9ea0bbdb1fec60b5b0daa89b654 (diff) | |
download | upstream-8151a5f6daad1cc7a7970c52f8473b903807e591.tar.gz upstream-8151a5f6daad1cc7a7970c52f8473b903807e591.tar.bz2 upstream-8151a5f6daad1cc7a7970c52f8473b903807e591.zip |
[package] base-files: sysupgrade: restrict find command to plain files to avoid duplicates when generating the conffiles tgz archive
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@18455 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/base-files/files/sbin')
-rwxr-xr-x | package/base-files/files/sbin/sysupgrade | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/base-files/files/sbin/sysupgrade b/package/base-files/files/sbin/sysupgrade index a582d432f8..0cf51cfb78 100755 --- a/package/base-files/files/sbin/sysupgrade +++ b/package/base-files/files/sbin/sysupgrade @@ -51,7 +51,8 @@ EOF add_uci_conffiles() { local file="$1" - find /etc/config /etc/passwd /etc/group /etc/dropbear /etc/firewall.user /etc/rc.local > "$file" + find /etc/config /etc/passwd /etc/group /etc/dropbear \ + /etc/firewall.user /etc/rc.local -type f > "$file" return 0 } |