CMD EXECUTION
ANSIBLE.BUILTIN.SHELL
Execute cmds via shell on the managed nodes
//EXAMPLE USAGE
ANSIBLE.BUILTIN.COMMAND
This runs a specified cmd directly on the managed nodes using Python w/o going through a shell. This module is faster than the shell module as it uses Python to execute cmds. Use this over the shell module when specific shell features {|, >, env, etc} aren't necessary to complete a task
//EXAMPLE USAGE
Last updated