I\'m quite new to Ansible and have a simple question for my understanding of local_action directive.
local_action
Would that mean that the command is fully executed loca
If you want to provide multiple parameters to the local action it will look something like this
local_action: module: command _raw_params: "which nginx" register: check_nginx failed_when: no changed_when: no