脚本は、次のようになります。私は、コマンドラインオプション--limit
を知っどのように1つのホスト上で特定のタスクを実行することができますか?
- hosts: all
tasks:
- name: "run on all hosts,1"
shell: something1
- name: "run on all hosts,2"
shell: something2
- name: "run on one host, any host would do"
shell: this_command_should_run_on_one_host
- name: "run on all hosts,3"
shell: something3
、私は1つのホストに制限することができ、それは脚本でそれを行うことは可能でしょうか?いずれについても
'run_once:true'をタスクに追加します。 – ceejayoz