log: create /var/log/installer root only

This commit is contained in:
Dan Bungert 2023-10-05 17:58:24 -06:00
parent 1da5cac477
commit c9cfdafe0c
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) os.makedirs(dir, exist_ok=True)
# Create the log directory in such a way that users in the group may # Create the log directory in such a way that users in the group may
# write to this directory in the installation environment. # 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 = logging.getLogger("")
logger.setLevel(logging.DEBUG) logger.setLevel(logging.DEBUG)