Fix old variable usage. Patch from janeznemanic. Thanks!
This commit is contained in:
parent
d011bbde2c
commit
f7d56ff2b1
98 changed files with 886 additions and 889 deletions
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
# tasklist for setting up a rdiff backup server.
|
||||
- name: install rdiff-backup
|
||||
yum: pkg=$item state=installed
|
||||
yum: pkg={{ item }} state=installed
|
||||
with_items:
|
||||
- rdiff-backup
|
||||
- git
|
||||
|
@ -10,11 +10,11 @@
|
|||
- packages
|
||||
|
||||
- name: setup rdiff backup script
|
||||
copy: src=$files/rdiff-backup/run-rdiff-backups dest=/usr/local/bin/run-rdiff-backups mode=755
|
||||
copy: src="{{ files }}/rdiff-backup/run-rdiff-backups" dest=/usr/local/bin/run-rdiff-backups mode=755
|
||||
tags:
|
||||
- config
|
||||
|
||||
- name: setup rdiff backup cron
|
||||
copy: src=$files/rdiff-backup/run-rdiff-backups.cron dest=/etc/cron.d/run-rdiff-backups
|
||||
copy: src="{{ files }}/rdiff-backup/run-rdiff-backups.cron" dest=/etc/cron.d/run-rdiff-backups
|
||||
tags:
|
||||
- config
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue