49 lines
1.1 KiB
YAML
Raw Normal View History

---
# Create users for both desktop and server machines.
# Scheduler
2021-02-02 21:28:17 -06:00
- name: General | Account Management | User | Ansible
user:
name: ansible
comment: Ansible
system: yes
# Superuser
2021-02-02 21:28:17 -06:00
- name: General | Account Management | User | Hyperling
user:
name: ling
comment: Hyperling
groups:
- sudo
append: yes
2021-02-02 20:55:06 -06:00
shell: "{{ bash_exec.stdout }}"
create_home: yes
generate_ssh_key: yes
#password: "{{ ling_passwd }}"
register: user_ling
2021-02-07 06:22:49 -06:00
- name: General | Account Management | User | Hyperling | TRASH Folder
file:
path: "{{ user_ling.home }}/TRASH"
state: directory
mode: '0755'
become_user: ling
2021-02-07 06:22:49 -06:00
when: user_ling.home != ""
- name: General | Account Management | User | Hyperling | Log In
shell: "echo SUCCESS"
become_user: ling
2021-02-07 06:22:49 -06:00
- name: General | Account Management | User | Hyperling | .bashrc Entries
blockinfile:
path: "{{ user_ling.home }}/.bashrc"
block: |
alias cp='cp -v'
alias mv='mv -v'
2021-02-07 06:37:42 -06:00
alias rm='echo "Use mv ~/TRASH/ instead!"'
2021-02-07 06:22:49 -06:00
marker: '# {mark} MANAGED BY ANSIBLE | Aliases'
state: present
backup: yes
ignore_errors: yes
when: user_ling.home != ""