From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH] backup: Fix broken globbing expansion Date: Tue, 29 Mar 2022 12:27:11 +0000 Message-ID: <20220329122711.558230-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============3678575863692892496==" List-Id: --===============3678575863692892496== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable This patch fixes globbing expansion in the backup include file list which got broken in c7e0d73e7cfd7be95db9d0a5f3392b8241813d5b. Signed-off-by: Michael Tremer --- config/backup/backup.pl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/config/backup/backup.pl b/config/backup/backup.pl index a2337cf23..6f9295e94 100644 --- a/config/backup/backup.pl +++ b/config/backup/backup.pl @@ -19,6 +19,8 @@ # = # ############################################################################= ### =20 +shopt -s nullglob + NOW=3D"$(date "+%Y-%m-%d-%H:%M")" =20 list_addons() { @@ -38,10 +40,8 @@ process_includes() { for include in $@; do local file while read -r file; do - for file in ${file}; do - if [ -e "/${file}" ]; then - echo "${file}" - fi + for file in /${file}; do + echo "${file}" done done < "${include}" done | sort -u --=20 2.30.2 --===============3678575863692892496==--