public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] backup: Fix broken globbing expansion
@ 2022-03-29 12:27 Michael Tremer
  2022-03-29 13:10 ` Adolf Belka
  0 siblings, 1 reply; 18+ messages in thread
From: Michael Tremer @ 2022-03-29 12:27 UTC (permalink / raw)
  To: development

[-- Attachment #1: Type: text/plain, Size: 1035 bytes --]

This patch fixes globbing expansion in the backup include file list
which got broken in c7e0d73e7cfd7be95db9d0a5f3392b8241813d5b.

Signed-off-by: Michael Tremer <michael.tremer(a)ipfire.org>
---
 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 @@
 #                                                                             #
 ###############################################################################
 
+shopt -s nullglob
+
 NOW="$(date "+%Y-%m-%d-%H:%M")"
 
 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
-- 
2.30.2


^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2022-03-30 21:20 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-29 12:27 [PATCH] backup: Fix broken globbing expansion Michael Tremer
2022-03-29 13:10 ` Adolf Belka
2022-03-29 13:11   ` Michael Tremer
2022-03-29 13:36     ` Bernhard Bitsch
2022-03-29 13:49       ` Michael Tremer
2022-03-29 14:01       ` Adolf Belka
2022-03-29 14:03         ` Michael Tremer
2022-03-29 14:17           ` Adolf Belka
2022-03-29 14:14         ` Adolf Belka
2022-03-29 14:22           ` Bernhard Bitsch
2022-03-29 14:22             ` Michael Tremer
2022-03-29 15:23               ` Adolf Belka
2022-03-29 18:36                 ` Bernhard Bitsch
2022-03-29 19:21                   ` Bernhard Bitsch
2022-03-30 14:06                     ` Michael Tremer
2022-03-30 14:38                       ` Bernhard Bitsch
2022-03-30 15:05                         ` Michael Tremer
2022-03-30 21:20                           ` Adolf Belka

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox