From df97f193ec722515fc3a38e077295392cc26ccc0 Mon Sep 17 00:00:00 2001 From: Anton McClure Date: Tue, 11 Jun 2019 18:07:34 -0400 Subject: [PATCH 1/2] Update 'roles/shell/tasks/users/amcclure.yml' --- roles/shell/tasks/users/amcclure.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/shell/tasks/users/amcclure.yml b/roles/shell/tasks/users/amcclure.yml index 32ee417..2a3efe1 100644 --- a/roles/shell/tasks/users/amcclure.yml +++ b/roles/shell/tasks/users/amcclure.yml @@ -23,4 +23,4 @@ - authorized_key: user: amcclure state: present - key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPviU+iBxO7xObbUxRS3+2WkKJAW4a7rnneLfFfip9wE amcclure@Antons-MacBook-Pro.local" + key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIIMF+N1NxdN2SBb7Yyk+d4ThVoO87bRSYhEqgR2K9gA4 amcclure@lake" From 22836b48aecf27962f0900f52bf8f0c4eb162e4a Mon Sep 17 00:00:00 2001 From: Anton McClure Date: Wed, 12 Jun 2019 20:18:09 -0400 Subject: [PATCH 2/2] add user dot --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/dot.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/dot.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 836d70c..6b3393f 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -112,3 +112,4 @@ - include: users/lytedev.yml - include: users/skirk.yml - include: users/serafeim.yml +- include: users/dot.yml diff --git a/roles/shell/tasks/users/dot.yml b/roles/shell/tasks/users/dot.yml new file mode 100644 index 0000000..0b15aa0 --- /dev/null +++ b/roles/shell/tasks/users/dot.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up dot + user: + name: dot + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/dot +- authorized_key: + user: dot + state: present + key: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIB9wjDSgLi9n9rRqus0QsNeV6xoq2hCGaZY2kCKdZTZf dot@dada.local"