From da3611b2767298e3f300b12b6ae03958a193c871 Mon Sep 17 00:00:00 2001 From: Stefan Schantl Date: Thu, 3 Mar 2022 19:55:59 +0100 Subject: [PATCH] ids-functions.pl: Do not try to chown files while extracting them. 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 Signed-off-by: Michael Tremer --- 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 53ca1bdd49..e8793f8be2 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.39.5