public inbox for development@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] backup.pl: fix Bug12817 - directories missing in backup after include file changed to relat>
@ 2022-03-25 12:22 Adolf Belka
  2022-03-25 13:26 ` Bernhard Bitsch
  2022-03-28 14:08 ` Michael Tremer
  0 siblings, 2 replies; 9+ messages in thread
From: Adolf Belka @ 2022-03-25 12:22 UTC (permalink / raw)
  To: development

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

From: Bernhard Bitsch <bbitsch(a)ipfire.org>

- The change of the backup include file from absolute paths to relative paths in CU164
   commit https://git.ipfire.org/?p=ipfire-2.x.git;a=commit;h=c7e0d73e7cfd7be95db9d0a5f3392b8241813d5b
   resulted in 20 core function directories no longer being backed up. Additionally a
   similar effect occurred with some addon backups
- Fix applied here proposed by Bernhard Bitsch and tested on a vm testbed system and
   confirmed to fix the problem. Backup of all directories again being done.

Fixes: Bug12817
Tested-By: Adolf Belka <adolf.belka(a)ipfire.org>
Signed-off-by: Adolf Belka <adolf.belka(a)ipfire.org>
---
 config/backup/backup.pl | 22 ++++++++++++----------
 1 file changed, 12 insertions(+), 10 deletions(-)

diff --git a/config/backup/backup.pl b/config/backup/backup.pl
index a2337cf23..c7dbc6cae 100644
--- a/config/backup/backup.pl
+++ b/config/backup/backup.pl
@@ -35,16 +35,18 @@ list_addons() {
 process_includes() {
 	local include
 
-	for include in $@; do
-		local file
-		while read -r file; do
-			for file in ${file}; do
-				if [ -e "/${file}" ]; then
-					echo "${file}"
-				fi
-			done
-		done < "${include}"
-	done | sort -u
+    pushd / >/dev/null
+     	for include in $@; do
+	    	local file
+	    	while read -r file; do
+	    		for file in ${file}; do
+	    			if [ -e "/${file}" ]; then
+	    				echo "${file}"
+	    			fi
+	    		done
+	    	done < "${include}"
+	    done | sort -u
+    popd >/dev/null
 }
 
 make_backup() {
-- 
2.35.1


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

end of thread, other threads:[~2022-03-29 10:23 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-25 12:22 [PATCH] backup.pl: fix Bug12817 - directories missing in backup after include file changed to relat> Adolf Belka
2022-03-25 13:26 ` Bernhard Bitsch
2022-03-28 14:08 ` Michael Tremer
2022-03-28 14:30   ` Adolf Belka
2022-03-28 16:24     ` Adolf Belka
2022-03-28 16:40       ` Michael Tremer
2022-03-28 18:22         ` Adolf Belka
2022-03-28 19:26           ` Bernhard Bitsch
2022-03-29 10:23             ` Michael Tremer

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