initial version of rsync module which supports running rsynd server on top of tls
This commit is contained in:
parent
60406a69f9
commit
d49da2f96e
8 changed files with 128 additions and 0 deletions
25
roles/rsync/client/tasks/main.yml
Normal file
25
roles/rsync/client/tasks/main.yml
Normal file
|
@ -0,0 +1,25 @@
|
|||
---
|
||||
|
||||
- name: install rsync packages
|
||||
package:
|
||||
name: "{{ item }}"
|
||||
state: installed
|
||||
with_items:
|
||||
- rsync
|
||||
- stunnel
|
||||
|
||||
- name: install rsync stunnel wrapper
|
||||
copy:
|
||||
dest: /usr/local/libexec/rsync-ssl-tunnel
|
||||
src: rsync-ssl-tunnel
|
||||
mode: 0755
|
||||
owner: root
|
||||
group: root
|
||||
|
||||
- name: install rsync-ssl
|
||||
copy:
|
||||
dest: /usr/local/bin/rsync-ssl
|
||||
src: rsync-ssl
|
||||
mode: 0755
|
||||
owner: root
|
||||
group: root
|
Loading…
Add table
Add a link
Reference in a new issue