Don't make config executable

This commit is contained in:
Jip-Hop 2023-01-28 12:34:44 +01:00
parent a7c16737ec
commit e94eb9c4a4
1 changed files with 1 additions and 1 deletions

View File

@ -452,7 +452,7 @@ create_jail() {
echo "SYSTEMD_NSPAWN_DEFAULT_ARGS=${systemd_nspawn_default_args[*]}"
} >"${jail_config_path}"
chmod 700 "${jail_config_path}"
chmod 600 "${jail_config_path}"
# Remove the cleanup trap on exit
trap - EXIT