Ansible 创建用户 Playbook 脚本


创建用户,设置wheel组sudo不需要密码,然后将用户添加到wheel组,并将用户的公钥传输到节点上:

 

---
- name: Linux Create User and Upload User Public keys
  hosts: test
  #remote_user: xxxx
  #sudo: yes
  vars:
      user_1: xiaoxiaoleo
  tasks:
    - name: Make sure we have a 'wheel' group
      group:
        name: wheel
        state: present

    - name: Allow 'wheel' group to have passwordless sudo
      lineinfile:
        dest: /etc/sudoers
        state: present
        regexp: '^%wheel'
        line: '%wheel ALL=(ALL) NOPASSWD: ALL'

    - name: Create user {{ user_1 }}
      user:
        name: "{{ user_1 }}"
        shell: /bin/bash
        groups: wheel
        createhome: yes
        home: /home/{{ user_1 }}
        state: present

    - name: create key directory
      action: file path=/home/{{ user_1 }}/.ssh/ state=directory  owner={{ user_1 }} group={{ user_1 }} mode=0700

    - name: create key file
      action: file path=/home/{{ user_1 }}/.ssh/authorized_keys state=touch  owner={{ user_1 }} group={{ user_1 }} mode=0600
       

    - name: Set authorized key took from file
      authorized_key:
        user: "{{ user_1 }}"
        state: present
        key: "{{ lookup('file', '/tmp/pubkey/id_rsa.pub') }}"


  


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM