ansible用户管理模块和剧本

ansible用户管理模块和剧本

group创建组模块

user创建⽤户模块

user模块

user模块
name ⽤户名
uid 指定uid
group 指定⽤户组
shell 指定命令解释器
create_home 是否创建家⽬录(yes/no)
state present 添加 absent删除

案例1:创建用户zhangsan

bash 复制代码
ansible web -m user -a 'name=zhangsan'
ansible web -a 'id zhangsan'

案例2:创建用户lisi,指定uid为10010,命令解释器为/sbin/nologin,不创建家目录

bash 复制代码
ansible web -m user -a 'name=lisi uid=10010 shell=/sbin/nologin create_home=no state=present'
ansible web -a 'grep lisi /etc/passwd'

剧本

剧本的格式如下:yaml格式

yaml 复制代码
---
- hosts: all  ---------》 被管理的主机
  vars:    ----> 变量
   filename: test.txt
  tasks:           --------》具体要执行的任务
   - name: touch file    -----> 任务描述
     shell: touch /tmp/{{ filename }} -----》对应模块

案例1:在所有机器的 /opt 目录下创建 application.log文件

yaml 复制代码
[root@m01 scripts]# cat 01-hello.yaml 
---
- hosts: all
  tasks:
    - name: 在/opt目录下创建application.log文件
      shell: touch /opt/application.log
      
ansible all -a 'ls -l /opt'

案例二:添加定时同步时间的定时任务

bash 复制代码
---
- hosts: all
  tasks:
    - name: 添加定时任务
      cron:
        name: "同步时间"
        minute: "*/2"
        job: "/sbin/ntpdate ntp1.aliyun.com &>/dev/null"
        state: present
相关推荐
阿无@_@11 小时前
1、ceph的安装——方式一ceph-ansible
ceph·ansible
牙牙70511 小时前
ansible一键安装nginx二进制版本
服务器·nginx·ansible
hhzz11 小时前
ansible自动化运维实战--复制模块和用户模块(3)
运维·自动化·ansible
didiplus11 小时前
告别手动编辑:如何用Python快速创建Ansible hosts文件?
网络·python·ansible·hosts
hhzz11 小时前
ansible自动化运维实战--Inventory主机清单(2)
运维·自动化·ansible
didiplus11 小时前
Ansible fetch模块详解:轻松从远程主机抓取文件
ansible·备份·fetch
qq_448941084 天前
2、ansible的playbook
ansible
2401_871213304 天前
ansible之playbook剧本
ansible
qq_448941084 天前
1、ansible自动化运维模块
自动化·ansible
运维技术小记4 天前
rhel7.9利用有网络环境打包ansible
网络·ansible