1.常用模块 1.1 group模块 添加或删除组 name= state=:present(添加),absent(删除) system=:1或true为添加系统组 gid= ansible all -m group -a "name=test state=present system=1 gid=600" ansible all -m group -a "name=test2 s…
1.目录结构 2.详细目录 3.主任务文件main.yaml 主任务文件main.yaml - name: print server name and user to remote testbox # 任务名称 shell: "echo 'Currently {{ user }} is logging {{ server_name }}' > {{ output }} # shell模块执行命令,变量是iventory/testenv中的 testservers:vars 部分的key/v…