fix condition
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Robert Kaussow 2019-11-09 14:06:06 +01:00
parent 4fbc383265
commit e524225a4a
1 changed files with 1 additions and 1 deletions

View File

@ -22,6 +22,6 @@
state: updated
module_arguments: "{{ item.module_arguments | default(omit) }}"
loop: "{{ pam_settings + pam_settings_extra }}"
when: item.state == "before" or item.state == "after"
when: item.state | default("args_present") == "before" or item.state | default("args_present") == "after"
become: True
become_user: root