log: move /var/log/installer back to 0770 root:adm

(cherry picked from commit 84bcd5f7c8)
This commit is contained in:
Dan Bungert 2023-10-10 13:24:56 +01:00
parent 45310cb857
commit 8b48df8a9e
1 changed files with 1 additions and 1 deletions

View File

@ -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, mode=0o700)
set_log_perms(dir, mode=0o770, group="adm")
logger = logging.getLogger("")
logger.setLevel(logging.DEBUG)