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

Last change on this file since 3667 was 3667, checked in by Bruno Cornec, 7 years ago

Many updates to MR setup

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.