diff options
author | Dmitry Ilvokhin <d@ilvokhin.com> | 2024-02-04 12:06:44 +0000 |
---|---|---|
committer | Dmitry Ilvokhin <d@ilvokhin.com> | 2024-02-04 12:06:44 +0000 |
commit | 293fd9c76c6c70b45e2f08f0c3afea84669ab9ad (patch) | |
tree | f7c96c0d68ce944040979951f2af4a402088c116 /roles/rsync/tasks | |
parent | a8d6ef3a811713beaabfd0f9a9592016159e17ac (diff) | |
download | infra-293fd9c76c6c70b45e2f08f0c3afea84669ab9ad.tar.gz infra-293fd9c76c6c70b45e2f08f0c3afea84669ab9ad.tar.bz2 infra-293fd9c76c6c70b45e2f08f0c3afea84669ab9ad.zip |
Add rsync role to deploy static content sites
Diffstat (limited to 'roles/rsync/tasks')
-rw-r--r-- | roles/rsync/tasks/main.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/roles/rsync/tasks/main.yml b/roles/rsync/tasks/main.yml new file mode 100644 index 0000000..e1fe99c --- /dev/null +++ b/roles/rsync/tasks/main.yml @@ -0,0 +1,5 @@ +- name: Install rsync + ansible.builtin.package: + name: + - rsync + state: present |