* [PATCH] ids-functions.pl: Do not try to chown files while extracting them.
@ 2022-03-03 18:55 Stefan Schantl
0 siblings, 0 replies; only message in thread
From: Stefan Schantl @ 2022-03-03 18:55 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 766 bytes --]
We are almost running as an unprivileged user and therfore have not
the permissions to do this.
This will save us a lot of confusion error messages.
Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
config/cfgroot/ids-functions.pl | 3 +++
1 file changed, 3 insertions(+)
diff --git a/config/cfgroot/ids-functions.pl b/config/cfgroot/ids-functions.pl
index 74d55def6..23430f472 100644
--- a/config/cfgroot/ids-functions.pl
+++ b/config/cfgroot/ids-functions.pl
@@ -475,6 +475,9 @@ sub extractruleset ($) {
# Load perl module to deal with archives.
use Archive::Tar;
+ # Disable chown functionality when uncompressing files.
+ $Archive::Tar::CHOWN = "0";
+
# Load perl module to deal with files and path.
use File::Basename;
--
2.30.2
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2022-03-03 18:55 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-03 18:55 [PATCH] ids-functions.pl: Do not try to chown files while extracting them Stefan Schantl
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox