mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-03-26 21:33:05 +00:00
There is a new paskeyconfig management module placed in the plugins
folder:
plugins/modules/ipapasskeyconfig.py
The paskeyconfig module allows to retrieve and modify global passkey
configuration attributes.
Here is the documentation of the module:
README-passkeyconfig.md
New example playbooks have been added:
playbooks/passkeyconfig/passkeyconfig-retrieve.yml
playbooks/passkeyconfig/passkeyconfig-present.yml
New tests for the module can be found at:
tests/passkeyconfig/test_passkeyconfig.yml
tests/passkeyconfig/test_passkeyconfig_client_context.yml
Signed-off-by: Rafael Guterres Jeffman <rjeffman@redhat.com>
11 lines
243 B
YAML
11 lines
243 B
YAML
---
|
|
- name: Passkeyconfig example
|
|
hosts: ipaserver
|
|
become: no
|
|
|
|
tasks:
|
|
- name: Set passkeyconfig require_user_verification to false
|
|
ipapasskeyconfig:
|
|
ipaadmin_password: SomeADMINpassword
|
|
require_user_verification: false
|