dest="secure_boot_key",
metavar="PATH",
section="Validation",
- parse=config_make_path_parser(),
+ parse=config_make_path_parser(secret=True),
paths=("mkosi.key",),
help="UEFI SecureBoot private key in PEM format",
),
dest="verity_key",
metavar="PATH",
section="Validation",
- parse=config_make_path_parser(),
+ parse=config_make_path_parser(secret=True),
paths=("mkosi.key",),
help="Private key for signing verity signature in PEM format",
),
dest="passphrase",
metavar="PATH",
section="Validation",
- parse=config_make_path_parser(required=False),
+ parse=config_make_path_parser(required=False, secret=True),
paths=("mkosi.passphrase",),
help="Path to a file containing the passphrase to use when LUKS encryption is selected",
),