Ansible Command Shell Raw模块区别

Posted Vincen_shen

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ansible Command Shell Raw模块区别相关的知识,希望对你有一定的参考价值。

Ansible可以执行命令的模块有三个:

  command

  shell

  raw

应尽量避免使用这三个模块来执行命令,因为其他模块大部分都是幂等性的,可以自动进行更改跟踪。

command、shell、raw不具备幂等性。

 

command、shell模块:

  要求受管主机上安装Python。command可以在受管主机上执行shell命令,但是不支持环境变量和操作符(例如 ‘|‘, ‘<‘, ‘>‘, ‘&‘),shell模块调用的/bin/sh指令执行。

 

raw模块:

  不需要受管主机上安装Python,直接使用远程shell运行命令,通常用于无法安装Python的系统(例如网络设备等)。

  

以上是关于Ansible Command Shell Raw模块区别的主要内容,如果未能解决你的问题,请参考以下文章

ansible中的幂等性

ansible 中shell 模块和command 模块的区别

ansible的安装与介绍host-pattern格式ansible的command模块ansible的shell模块ansible的script模块ansible的copy模块

Ansible4:Ad-hoc与命令执行模块

Ansible4:Ad-hoc与命令执行模块

ansible 常用模块