ansible 使用多种策略和策略插件
ansible using multiple strategies with strategy plugin
我正在使用 ansible 2.1,想弄清楚如何(如果可能的话)在 ansible.cfg 文件中为 运行 ansible 剧本指定多个策略。目前,我正在使用 debug 策略,但想根据需要使用 free 或其他策略。
strategy: debug
根据documentation,您可以在每次游戏的基础上设置策略:
- hosts: all
strategy: free
tasks:
...
我正在使用 ansible 2.1,想弄清楚如何(如果可能的话)在 ansible.cfg 文件中为 运行 ansible 剧本指定多个策略。目前,我正在使用 debug 策略,但想根据需要使用 free 或其他策略。
strategy: debug
根据documentation,您可以在每次游戏的基础上设置策略:
- hosts: all
strategy: free
tasks:
...