add missing pam module parameter
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Robert Kaussow 2019-11-09 13:37:34 +01:00
parent 01a8cef066
commit 35735ec2a4

View File

@ -5,8 +5,11 @@
type: "{{ item.type | default('auth') }}"
module_path: "{{ item.module_path | default('pam_unix.so') }}"
control: "{{ item.control }}"
module_arguments: "{{ item.module_arguments | default(omit) }}"
new_type: "{{ item.new_type | default(omit) }}"
new_module_path: "{{ item.new_module_path | default(omit) }}"
new_control: "{{ izem.new_control | default(omit) }}"
state: "{{ item.state | default('args_present') }}"
module_arguments: "{{ item.module_arguments | default(omit) }}"
loop: "{{ pam_settings + pam_settings_extra }}"
become: True
become_user: root