From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Schantl To: development@lists.ipfire.org Subject: [PATCH] ids-functions.pl: Do not try to chown files while extracting them. Date: Thu, 03 Mar 2022 19:55:59 +0100 Message-ID: <20220303185559.3551-1-stefan.schantl@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6314258445232645769==" List-Id: --===============6314258445232645769== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit 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 --- 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 --===============6314258445232645769==--