无论传入什么标签,如何执行预执行任务?

时间:2015-12-09 19:41:52

标签: ansible

---    
- name: superduper playbook
  hosts: aws-region1
  remote_user: mesrine
  pre_tasks:
  - include_vars: "{{ env }}/group_vars/vancouver"
    when: region is defined and region == 'van'
  ...snipped...

我希望执行include_vars任务,无论传入的是什么标记。现在,传入的任何标记都会过滤掉我的include_vars预先任务。

1 个答案:

答案 0 :(得分:2)

您始终可以使用special tag - always - 强制任务始终运行,无论指定的代码如何。