Skip to content
Snippets Groups Projects
Unverified Commit f16ec055 authored by Jae Lo Presti's avatar Jae Lo Presti Committed by GitHub
Browse files

hash_password: raise an error if no config file is specified (#12789)

parent b935c952
No related branches found
No related tags found
No related merge requests found
The `hash_password` script now fails when it is called without specifying a config file.
......@@ -46,14 +46,14 @@ def main() -> None:
"Path to server config file. "
"Used to read in bcrypt_rounds and password_pepper."
),
required=True,
)
args = parser.parse_args()
if "config" in args and args.config:
config = yaml.safe_load(args.config)
bcrypt_rounds = config.get("bcrypt_rounds", bcrypt_rounds)
password_config = config.get("password_config", None) or {}
password_pepper = password_config.get("pepper", password_pepper)
config = yaml.safe_load(args.config)
bcrypt_rounds = config.get("bcrypt_rounds", bcrypt_rounds)
password_config = config.get("password_config", None) or {}
password_pepper = password_config.get("pepper", password_pepper)
password = args.password
if not password:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment