Sometimes, we have a task which has to be executed everytime. For
instance, I have a playbook saying :
- hosts: all
pre_tasks:
- action: site_facts
roles:
- { role: common, when: some_var_provided_by_site_facts }
So site_facts has to be executed even if I use --tags or --limit when
calling ansible-playbook. Is there a way to do this ?