From d0c9711bf3993cb862dbca53b7b84e9641b6b3b5 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Wed, 11 Nov 2020 23:06:38 +0100 Subject: [PATCH] Adding user axolotl --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/axolotl.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/axolotl.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 52e887e..526ad59 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -290,3 +290,4 @@ - include: users/lukaszwdowiak.yml - include: users/slaserx.yml - include: users/fengf.yml +- include: users/axolotl.yml diff --git a/roles/shell/tasks/users/axolotl.yml b/roles/shell/tasks/users/axolotl.yml new file mode 100644 index 0000000..3afd959 --- /dev/null +++ b/roles/shell/tasks/users/axolotl.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up axolotl + user: + name: axolotl + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/axolotl +- authorized_key: + user: axolotl + state: present + key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIDVaKCuGMCDvwkruYiJnhCVOq77z50EKWTEjnGPVx2C8"