source: MondoRescue/branches/3.3/ansible/roles/rsync/tasks/main.yml

Last change on this file was 3795, checked in by Bruno Cornec, 2 months ago

Untag v3.3.0 never really published in the past - will start from here

File size: 357 bytes
Line 
1---
2
3- name: Check that rsync is installed
4 urpmi: name=rsync state=installed no_recommends=yes
5 tags: rsync
6
7- name: Configure rsync
8 template: src=templates/rsyncd.conf dest=/etc/rsyncd.conf owner=root group=root mode=0600 backup=yes
9 notify:
10 - restart rsync
11 tags: rsync
12
13- name: Check that rsync is runing
14 service: name=rsyncd state=started
15
Note: See TracBrowser for help on using the repository browser.