Added new users
This commit is contained in:
parent
81b5b99910
commit
83f3cfcd12
|
@ -0,0 +1,14 @@
|
||||||
|
# Configure iris
|
||||||
|
---
|
||||||
|
- name: Install iris via git
|
||||||
|
git:
|
||||||
|
repo: 'https://github.com/Calamitous/iris.git'
|
||||||
|
dest: /var/lib/iris
|
||||||
|
force: yes
|
||||||
|
|
||||||
|
- name: Installing iris executable
|
||||||
|
file:
|
||||||
|
src: /var/lib/iris/iris.rb
|
||||||
|
dest: /usr/local/bin/iris
|
||||||
|
mode: 0755
|
||||||
|
state: link
|
|
@ -11,3 +11,4 @@
|
||||||
- include: minecraft.yml
|
- include: minecraft.yml
|
||||||
- include: dovecot.yml
|
- include: dovecot.yml
|
||||||
- include: postfix.yml
|
- include: postfix.yml
|
||||||
|
- include: iris.yml
|
||||||
|
|
|
@ -71,3 +71,5 @@
|
||||||
- include: users/dalist.yml
|
- include: users/dalist.yml
|
||||||
- include: users/apple.yml
|
- include: users/apple.yml
|
||||||
- include: users/logique.yml
|
- include: users/logique.yml
|
||||||
|
- include: users/jumbajookiba.yml
|
||||||
|
- include: users/letamesis.yml
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
---
|
||||||
|
- name: Setting up jumbajookiba
|
||||||
|
user:
|
||||||
|
name: jumbajookiba
|
||||||
|
groups: tilde
|
||||||
|
state: present
|
||||||
|
skeleton: /etc/skel
|
||||||
|
shell: /bin/bash
|
||||||
|
system: no
|
||||||
|
createhome: yes
|
||||||
|
home: /home/jumbajookiba
|
||||||
|
- authorized_key:
|
||||||
|
user: jumbajookiba
|
||||||
|
state: present
|
||||||
|
key: "ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAklOUpkDHrfHY17SbrmTIpNLTGK9Tjom/BWDSUGPl+nafzlHDTYW7hdI4yZ5ew18JH4JW9jbhUFrviQzM7xlELEVf4h9lFX5QVkbPppSwg0cda3Pbv7kOdJ/MTyBlWXFCR+HAo3FXRitBqxiX1nKhXpHAZsMciLq8V6RjsNAQwdsdMFvSlVK/7XAt3FaoJoAsncM1Q9x5+3V0Ww68/eIFmb1zuUFljQJKprrX88XypNDvjYNby6vw/Pb0rwert/EnmZ+AW4OZPnTPI89ZPmVMLuayrD2cE86Z/il8b+gw3r3+1nKatmIkjn2so1d01QraTlMqVSsbxNrRFi9wrf+M7Q=="
|
|
@ -0,0 +1,15 @@
|
||||||
|
---
|
||||||
|
- name: Setting up letamesis
|
||||||
|
user:
|
||||||
|
name: letamesis
|
||||||
|
groups: tilde
|
||||||
|
state: present
|
||||||
|
skeleton: /etc/skel
|
||||||
|
shell: /bin/bash
|
||||||
|
system: no
|
||||||
|
createhome: yes
|
||||||
|
home: /home/letamesis
|
||||||
|
- authorized_key:
|
||||||
|
user: letamesis
|
||||||
|
state: present
|
||||||
|
key: "ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBArBpKEKHnlkUMUMMI4efMBa6znObJRfjcj1uls/rlJBbnGUsicXwGGNctn68uB4zOstVZhafsH6D04E5WVS4Cc="
|
Loading…
Reference in New Issue