vars: add the user and group options on files

This changeset forwards the ownership control options from sops-nix.
This commit is contained in:
Louis Opter
2024-10-12 11:17:38 -07:00
committed by Mic92
parent 84fe46b6e3
commit 4effc0c50e
4 changed files with 15 additions and 2 deletions

View File

@@ -30,7 +30,10 @@ def register_parser(parser: argparse.ArgumentParser) -> None:
import_sops_parser = subparser.add_parser("import-sops", help="import a sops file")
register_import_sops_parser(import_sops_parser)
parser_key = subparser.add_parser("key", help="create and show age keys")
parser_key = subparser.add_parser(
"key",
help="create, show, or update the key for the clan",
)
register_key_parser(parser_key)
register_secrets_parser(subparser)