diff options
author | Dmitry Ilvokhin <d@ilvokhin.com> | 2024-03-08 21:26:47 +0000 |
---|---|---|
committer | Dmitry Ilvokhin <d@ilvokhin.com> | 2024-03-08 21:26:47 +0000 |
commit | b8d90587492becebbc8828a79deee1edb0792083 (patch) | |
tree | 1c5e9d5c5342de586cdded523c4855726b15ccaf /roles/users/tasks/main.yml | |
parent | 55fe803f1795061d1397c76a793cc2f1986b4774 (diff) | |
download | infra-b8d90587492becebbc8828a79deee1edb0792083.tar.gz infra-b8d90587492becebbc8828a79deee1edb0792083.tar.bz2 infra-b8d90587492becebbc8828a79deee1edb0792083.zip |
Add ssh role
Diffstat (limited to 'roles/users/tasks/main.yml')
-rw-r--r-- | roles/users/tasks/main.yml | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/roles/users/tasks/main.yml b/roles/users/tasks/main.yml index 864934a..f3df2df 100644 --- a/roles/users/tasks/main.yml +++ b/roles/users/tasks/main.yml @@ -14,19 +14,3 @@ # Group http required to deploy websites with rsync under personal # username. - http - -- name: Setup SSH directory for Dmitry Ilvokhin - ansible.builtin.file: - path: /home/d/.ssh - state: directory - owner: d - group: d - mode: u+rw,g-wx,o-rwx - -- name: Update authorized_keys for Dmitry Ilvokhin - ansible.posix.authorized_key: - user: d - state: present - key: '{{ item }}' - with_file: - - misc/pubkeys/d.pub |