我有一个 local_action 我想分成多行。
- name: Find geographical region of this server
local_action: uri url=http://locator/studio/{{ ansible_default_ipv4.address}} method=GET return_content=yes register=locator_output
我有一个 local_action 我想分成多行。
- name: Find geographical region of this server
local_action: uri url=http://locator/studio/{{ ansible_default_ipv4.address}} method=GET return_content=yes register=locator_output
任务是使用定义的
shorthand syntax
。delegate_to
使用常规语法和参数可以实现相同的结果,如下所示:解决方案是使用
module
带有原始操作名称的参数: