Merge pull request #702 from jh23453/patch-1

Login shell is called defaultshell and not defaultlogin
This commit is contained in:
Thomas Woerner
2021-12-09 14:24:27 +01:00
committed by GitHub

View File

@@ -56,12 +56,12 @@ Example playbook to read config options:
register: result
- name: display default login shell
debug:
msg: '{{ result.config.defaultlogin }}'
msg: '{{ result.config.defaultshell }}'
- name: ensure defaultloginshell and maxusernamelength are set as required
ipaconfig:
ipaadmin_password: password
defaultlogin: /bin/bash
defaultshell: /bin/bash
maxusername: 64
```