diff options
author | Dmitry Ilvokhin <d@ilvokhin.com> | 2024-03-11 21:34:52 +0000 |
---|---|---|
committer | Dmitry Ilvokhin <d@ilvokhin.com> | 2024-03-11 21:34:52 +0000 |
commit | 388bc6a6a113e0c424995645b3805275e37f3616 (patch) | |
tree | 71fb69f3c5b079d424b9f3c77b39193662cfbe03 /roles/ssh/tasks/main.yml | |
parent | 44bf3816aec3593006f9844451000386ff030cb7 (diff) | |
download | infra-388bc6a6a113e0c424995645b3805275e37f3616.tar.gz infra-388bc6a6a113e0c424995645b3805275e37f3616.tar.bz2 infra-388bc6a6a113e0c424995645b3805275e37f3616.zip |
Add dotfiles tag to all dotfiles tasks
Diffstat (limited to 'roles/ssh/tasks/main.yml')
-rw-r--r-- | roles/ssh/tasks/main.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/roles/ssh/tasks/main.yml b/roles/ssh/tasks/main.yml index 92d4efd..922832f 100644 --- a/roles/ssh/tasks/main.yml +++ b/roles/ssh/tasks/main.yml @@ -5,6 +5,8 @@ owner: d group: d mode: u+rw,g-wx,o-rwx + tags: + - dotfiles - name: Update authorized_keys for Dmitry Ilvokhin ansible.posix.authorized_key: @@ -13,6 +15,8 @@ key: '{{ item }}' with_file: - misc/pubkeys/d.pub + tags: + - dotfiles - name: Configure ssh for Dmitry Ilvokhin ansible.builtin.template: @@ -22,6 +26,8 @@ mode: u+rw,g-rw,o-rw when: - jumphost + tags: + - dotfiles - name: Add ssh rc for Dmitry Ilvokhin ansible.builtin.copy: @@ -31,3 +37,5 @@ mode: u+rwx,g-rw,o-rw when: - jumphost + tags: + - dotfiles |