Skip to content
Snippets Groups Projects
Verified Commit e12eba63 authored by Christian Heusel's avatar Christian Heusel :rocket:
Browse files

Merge branch 'gromit/set-password_hash-rounds' into 'master'

postfix_null: Use fixed amount of rounds for password_hash

See merge request !880
parents 005b585f 89d84e03
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,7 @@
name: "{{ inventory_hostname_short }}"
comment: "SMTP Relay Account for {{ inventory_hostname }}"
group: nobody
password: "{{ postfix_relay_password | password_hash('sha512') }}"
password: "{{ postfix_relay_password | password_hash('sha512', rounds=5000) }}"
shell: /sbin/nologin
update_password: always
home: /home/"{{ inventory_hostname }}" # Set home directory so shadow.service does not fail
......
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