file_util: just make written files root only

This commit is contained in:
Dan Bungert 2023-10-05 17:21:29 -06:00
parent f567f9e1f5
commit 80b144f220
1 changed files with 2 additions and 2 deletions

View File

@ -23,8 +23,8 @@ import tempfile
import yaml
_DEF_PERMS_FILE = 0o640
_DEF_GROUP = "adm"
_DEF_PERMS_FILE = 0o600
_DEF_GROUP = "root"
log = logging.getLogger("subiquitycore.file_util")