fix 1900 failures of the following case issue: `name[casing]: All names should start with an uppercase letter.` Signed-off-by: Ryan Lerch <rlerch@redhat.com>
20 lines
502 B
YAML
20 lines
502 B
YAML
---
|
|
# tasklist for setting up a rdiff backup server.
|
|
- name: Install rdiff-backup
|
|
package: name={{ item }} state=present
|
|
with_items:
|
|
- rdiff-backup
|
|
- git
|
|
- ansible
|
|
tags:
|
|
- packages
|
|
|
|
- name: Setup rdiff backup script
|
|
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
|
|
tags:
|
|
- config
|