From 958810971969ba01d28b62d24cd314653f37b997 Mon Sep 17 00:00:00 2001 From: Ubergeek Date: Wed, 29 Apr 2020 07:36:29 -0400 Subject: [PATCH] Adding user loki --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/loki.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/loki.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 62468b8..499cd77 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -209,3 +209,4 @@ - include: users/Iyxbaideus.yml - include: users/knight.yml - include: users/wilfredex.yml +- include: users/loki.yml diff --git a/roles/shell/tasks/users/loki.yml b/roles/shell/tasks/users/loki.yml new file mode 100644 index 0000000..e13ea8a --- /dev/null +++ b/roles/shell/tasks/users/loki.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up loki + user: + name: loki + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/loki +- authorized_key: + user: loki + state: present + key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAWvYEp+qRqS4FWPqGS1br2TJ+VcpBUIV5bZKWDV9m2g loki@debian"