Merge pull request 'cli: don't generate a sops key that is world readable' (#3877) from push-ytvoytptyzrz into main

Reviewed-on: https://git.clan.lol/clan/clan-core/pulls/3877
This commit is contained in:
Michael Hoang
2025-06-06 02:30:48 +00:00

View File

@@ -352,6 +352,7 @@ def generate_private_key(out_file: Path | None = None) -> tuple[str, str]:
raise ClanError(msg)
if out_file:
out_file.parent.mkdir(parents=True, exist_ok=True)
out_file.touch(mode=0o600)
out_file.write_text(res)
except subprocess.CalledProcessError as e:
msg = "Failed to generate private sops key"