Is it possible to prevent a playbook, role, or even specific task from being run on a certain list of hostnames (or group)? I have a generic playbook for configuring postfix for sending emails, however I don't want this playbook to ever be run against a mail server (which has a different postfix configuration). The idea behind blacklisting it in the playbook itself is so that if someone accidentally runs "ansible-playbook all postfix.yml" it won't override the configuration on the mail servers. Can this be done?
You can exclude groups as well, for instance, all machines must be in the group webservers but not in the group phoenix:
webservers:!phoenix
Thanks for the information. In order to exclude a hostname called "mailserver", would I simply add a hosts line like this to the top of the postfix role's tasks/main.yml?- hosts:!mailserver- name: task1...- name: task2...Will this override the list of hosts that I provide to the playbooks that include this role?
- name: mailserver play
hosts: postfixservers:!mailserver
tasks:
- ...
roles:
- ...
Okay, so the only way to exclude a host is at the play level, not the role level?
It would be more ideal for my setup to exclude at the role level, that way I can ensure that any new play that is written that includes a particular role won't run it against blacklisted hosts.
Moreover, having hosts excluded at the play level means that entire play will be skipped on blacklisted hosts, but perhaps only 1 of the roles in the play is blacklisted,
and so if the blacklist/exclusion happened at the role level then the play would run on the blacklisted host and just complete all of the roles that were allowed.
For example, say I have a play called common.yml which sets up several common features on hosts. It is defined as follows:roles:- ntp- postfix- smartmontoolsIt would be nice to be able to just run the common.yml play against all hosts, and have it configure ntp and smartmontools on all hosts but only postfix on the hosts which aren't mailservers.
Is this possible? If I add "- hosts: !mailserver" to common.yml, then the complete play will be skipped on "mailserver".