Skip to content

Commit

Permalink
Merge pull request #1830 from dbungert/log-ctd
Browse files Browse the repository at this point in the history
log: move /var/log/installer back to 0770 root:adm
  • Loading branch information
dbungert authored Oct 10, 2023
2 parents 00011e2 + 84bcd5f commit f9e2cbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion subiquitycore/log.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit f9e2cbf

Please sign in to comment.