-
Notifications
You must be signed in to change notification settings - Fork 48
Closed
Labels
bugSomething isn't workingSomething isn't workingmerged in develSolution is merged in develSolution is merged in devel
Description
Section 2.1.21 | WARN | has
when:
- "'exim4' not in ansible_facts.packages"
- "'postfix' not in ansible_facts.packages"Ansible evaluates the when section as logical AND so unless you have both installed it will always create the warning.
As the debug message say you want to have OR instead which would need to look like this:
when:
- "'exim4' not in ansible_facts.packages or 'postfix' not in ansible_facts.packages"Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't workingmerged in develSolution is merged in develSolution is merged in devel