我有一个剧本,它使用多个主机组,例如(appserver,app01server,dbserver,db01server),如果主机组包含db *,则条件应执行。我写了这样的东西:
- name: status of the app
shell: echo "Hello World"
when: ansible_host == "db*"
应使用哪种正则表达式模式或此处如何使用正则表达式?
答案 0 :(得分:0)
尝试 db \ w +
- name: status of the app
shell: echo "Hello World"
when: ansible_host == "db\w+"
您可以使用regex101进行测试。