From c9cfdafe0cfaef8946c336df63fa68a2682e8011 Mon Sep 17 00:00:00 2001 From: Dan Bungert Date: Thu, 5 Oct 2023 17:58:24 -0600 Subject: [PATCH] log: create /var/log/installer root only --- subiquitycore/log.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subiquitycore/log.py b/subiquitycore/log.py index 36a54f97..10a99126 100644 --- a/subiquitycore/log.py +++ b/subiquitycore/log.py @@ -23,7 +23,7 @@ def setup_logger(dir, base="subiquity"): os.makedirs(dir, exist_ok=True) # Create the log directory in such a way that users in the group may # write to this directory in the installation environment. - set_log_perms(dir, group_write=True) + set_log_perms(dir, mode=0o700) logger = logging.getLogger("") logger.setLevel(logging.DEBUG)