美文网首页
Ansible-command 模块

Ansible-command 模块

作者: AlanSun2 | 来源:发表于2020-01-20 11:23 被阅读0次

    command 模块是 ansible ad-hoc command 模式下的默认模块,也就是说你不需要指定参数-m

    Example

    1. creates

    creates 表示存在则不运行命令

    ansible group1 -a "ls /  creates=/tem/testfile"
    

    上面的命令表示:如果 /tem/testfile 文件夹不存在则运行 ls / 命令

    2. removes

    removes 表示存在运行则运行

    ansible group1 -a "ls /  removes=/tem/testfile"
    

    上面的命令表示:如果 /tem/testfile 文件夹存在则运行 ls / 命令

    相关文章

      网友评论

          本文标题:Ansible-command 模块

          本文链接:https://www.haomeiwen.com/subject/xfljzctx.html