Make sure generated password do not start with dashes.
This commit is contained in:
parent
a6feab0e38
commit
4d70971359
4 changed files with 8 additions and 8 deletions
|
@ -1,9 +1,9 @@
|
|||
---
|
||||
kdc_master_pwd: "{{ lookup('password', '/tmp/kdc_master.pwd length=24') }}"
|
||||
kdc_master_pwd: "{{ lookup('password', '/tmp/kdc_master.pwd chars=ascii_letters,digits length=32') }}"
|
||||
kdc_master_pwd_file: "/root/kdc-master.pwd"
|
||||
|
||||
kdc_service_pwd: "{{ lookup('password', '/tmp/kdc-service.pwd length=24') }}"
|
||||
kadmin_service_pwd: "{{ lookup('password', '/tmp/kadmin-service.pwd length=24') }}"
|
||||
kdc_service_pwd: "{{ lookup('password', '/tmp/kdc-service.pwd chars=ascii_letters,digits length=32') }}"
|
||||
kadmin_service_pwd: "{{ lookup('password', '/tmp/kadmin-service.pwd chars=ascii_letters,digits length=32') }}"
|
||||
|
||||
kadmin_pwd: "{{ lookup('password', '/tmp/kadmin.pwd length=24') }}"
|
||||
kadmin_pwd: "{{ lookup('password', '/tmp/kadmin.pwd chars=ascii_letters,digits length=32') }}"
|
||||
kadmin_pwd_file: "/root/kadmin.pwd"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue