Move hard-coded numbers to variables.
This commit is contained in:
parent
572dd5a3b0
commit
81337ac0db
8 changed files with 16 additions and 8 deletions
|
@ -3,3 +3,5 @@ basedn: "{{ 'dc=' + ( ansible_domain | replace('^.','') | replace('.$','') | rep
|
|||
ldap_server: ldap
|
||||
krb_server: kerberos
|
||||
nfs_server: nfs
|
||||
min_id_sssd: 5000
|
||||
max_id_sssd: 20000
|
||||
|
|
|
@ -19,5 +19,5 @@ krb5_server = {{ krb_server }}
|
|||
krb5_realm = {{ ansible_domain | upper }}
|
||||
cache_credentials = true
|
||||
|
||||
min_id = 10000
|
||||
max_id = 20000
|
||||
min_id = {{ min_id_sssd }}
|
||||
max_id = {{ max_id_sssd }}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue