From eeb294d7f8e42338155b3176a177d228dabf8cd8 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Fri, 10 Jul 2020 09:18:57 +0200 Subject: [PATCH 1/4] Adding user core --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/core.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/core.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index c4d3a5b8..491ef09a 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -249,3 +249,4 @@ - include: users/kcubeterm.yml - include: users/genie_g.yml - include: users/Kymonlucky.yml +- include: users/core.yml diff --git a/roles/shell/tasks/users/core.yml b/roles/shell/tasks/users/core.yml new file mode 100644 index 00000000..45a6caa9 --- /dev/null +++ b/roles/shell/tasks/users/core.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up core + user: + name: core + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/core +- authorized_key: + user: core + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDv22iVeJ1DlIfj670ARRT3iEGdH9gN1CKM2cjQp0hYxLJ4BwxsyiSSqTb0TxpRABkIW8tRFm/cEBnD/f2//fcJ2NOem+RV0c90TamuslODXmklRKJ7qGWJkrEXJ4dl8cRvoFBlvcippuIT+0N9XWb1xO0MSBUie59FN+osSwOLV/D21K9JzoS8yzKtbxxQI+9N7BZlEmknp4QMcFtZ+SzEN7Q+EnH7YBfq5dEaAq3nhQ/vnuirwupmJ1GS+0Fsg14oe1xjfJom8ZWuw/FEFzJGpZFkh8HETiHtS6DihBqn3PL6kTnvNX+W7RY08chIMNdjwu8BsOJGjcD7jsqWIV2J user@debian" From cbe9309c4cab718f0a3f266c4c294196f00f24f0 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Fri, 10 Jul 2020 09:29:22 +0200 Subject: [PATCH 2/4] Adding user mirsella --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/mirsella.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/mirsella.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 491ef09a..26327d3e 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -250,3 +250,4 @@ - include: users/genie_g.yml - include: users/Kymonlucky.yml - include: users/core.yml +- include: users/mirsella.yml diff --git a/roles/shell/tasks/users/mirsella.yml b/roles/shell/tasks/users/mirsella.yml new file mode 100644 index 00000000..60814d15 --- /dev/null +++ b/roles/shell/tasks/users/mirsella.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up mirsella + user: + name: mirsella + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/mirsella +- authorized_key: + user: mirsella + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQDFx6xjYiBpYJ+9j9HdQl8MS81v6ZaG1ouEGLwA4dgeeLspotToo9evv3pyVlFenE452xcrnNaRWT+aWfh8hrCI/EXw9EZGzVKj/Jwc1F+6opqwjnA5QgxzMXNx7lWO+fUKYJxYMgdvXk/gqD3Ixaxb22nnwuuxfk4IfHfFPiDobnikvdpDamvhamNSjwBg5QGOja18QANASgP6t7v2mbFyXj8eSLus4+2ocb56B69M1jxCJydjJ/DdrrNYwuWVusuxcBk7gxtxxbmRgMm0OI6cI+FNSThGH8E5MR4s/BVIMUqQvPzlIyyELkSn9A4FIaCKpy54TX1OCvcAaxKmiblH3BGQ8Ql9Kb4wrZDBrywpPFnZQJx3Hx6kA9k13XD5XUYZRatYbjHAqvPbItiVDXi9BVsn5uZ3ntP72PGZUmy6lUmyUAbJs8o/mHeUVxZyI9cXhQAmaPNiq9y+ExnYKx7MvMDDTcOOknVrTxSj0vyz3CF1+bbA1YzffbM5M9Xc+u7fkuP1OltTmtfYaPVBvH7idJq5D3cq/aRAVv7jbZdxLh3fPd0B+GVo2jtfBmzxa6mJWsAO6R+4X2jKdat07Ec+dpQ9dNcy55etFF1yUJgXh6hbSOdsyq3FTeXzneDaN4OhnTNGYXJILR9Zn3U+xZO2allnzBVPKWKvXN1BrCwMsw==" From 441bd252f793cfbc87a26edcc821abc735f72039 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sat, 11 Jul 2020 14:18:58 +0200 Subject: [PATCH 3/4] Adding user Loial --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/Loial.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/Loial.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index 26327d3e..d2b6732c 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -251,3 +251,4 @@ - include: users/Kymonlucky.yml - include: users/core.yml - include: users/mirsella.yml +- include: users/Loial.yml diff --git a/roles/shell/tasks/users/Loial.yml b/roles/shell/tasks/users/Loial.yml new file mode 100644 index 00000000..2bdfab4c --- /dev/null +++ b/roles/shell/tasks/users/Loial.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up Loial + user: + name: Loial + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/Loial +- authorized_key: + user: Loial + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDYUBK7u/akGkpUGqM3+siczY+STES6ggw6XAJgY8UOCKzXeUPe5yES/AD6yiXKzW8PWFEg+tLvkASdGSvz2eEk70klYo1n7FLDzJRwbHmXakTHB62xbQYw4mJdeLX5ZnsrwsfTKxwHxqXdxX2G1+coJ7pt+u3Q9dqF2YMtQnBxwfPMWLqsfXZYT3DodxAm0kHxR5VzV3j4bxXeB8oR4tdofRBwlatvV5bjBvu9ZD1WvpW7pXSxmlGOOHR8xdU/AnnDYSZVlJwPVx/AdpMlVXwGrYpTK1C5Nz+THVsnBNCMya2HlvsPp4WBW4qonyp6q3M12T9MqjCqAfLa6/PwWcx/ herman" From b0cec95e79aee811d0d8f38147f9a799c64f6106 Mon Sep 17 00:00:00 2001 From: Naglfar Date: Sat, 11 Jul 2020 14:20:55 +0200 Subject: [PATCH 4/4] Adding user beneskiwik --- roles/shell/tasks/users.yml | 1 + roles/shell/tasks/users/beneskiwik.yml | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 roles/shell/tasks/users/beneskiwik.yml diff --git a/roles/shell/tasks/users.yml b/roles/shell/tasks/users.yml index d2b6732c..56c24f8b 100644 --- a/roles/shell/tasks/users.yml +++ b/roles/shell/tasks/users.yml @@ -252,3 +252,4 @@ - include: users/core.yml - include: users/mirsella.yml - include: users/Loial.yml +- include: users/beneskiwik.yml diff --git a/roles/shell/tasks/users/beneskiwik.yml b/roles/shell/tasks/users/beneskiwik.yml new file mode 100644 index 00000000..b14ddb0b --- /dev/null +++ b/roles/shell/tasks/users/beneskiwik.yml @@ -0,0 +1,15 @@ +--- +- name: Setting up beneskiwik + user: + name: beneskiwik + groups: tilde + state: present + skeleton: /etc/skel + shell: /bin/bash + system: no + createhome: yes + home: /home/beneskiwik +- authorized_key: + user: beneskiwik + state: present + key: "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDhd/uAF53+KWYY4KM1w9NazOwXAVK7wwsUAboDUMy08YCa2VwMfxTWrFgBPvHBshsZ07uyoK8x0NKW3CqCh/ZHPb17SmfTllHrz6Vut6JRyPaqSVQxqA7bMPxv36qdrMT4c+MKvRJvHC16PVrx2pHidTEBDk/m62R+E/a/4RPYNDDFXsmQ7K8Fon/ZFrHjfA/xvj6PT+8zBEc2Ru/gV7W4hohej8y06E3zkBOx1MHpyWSCJAW8sWpTC9s9nZaGau1ECXi4N077iHsRTOmHF++A6y8d+KcADCSrSLxwN3haL81SsyZ8w3DsAv/gfVfrN07RiFDdRHYIalcFC2Knr0UT"