ansible/roles/cryptoraid/tasks/main.yml

21 lines
439 B
YAML
Raw Normal View History

2022-09-27 10:27:00 +02:00
---
- name: alpine setup
include_tasks: alpine.yml
when: ansible_distribution == "Alpine"
2022-10-20 15:03:12 +02:00
- name: copy maintainance scripts
copy:
src: "bin/{{ item }}"
dest: "/usr/local/bin/{{ item }}"
mode: "755"
loop:
- "btr_defrag.sh"
- "btr_balance.sh"
- "btr_scrub.sh"
- "fs_trim.sh"
2022-10-20 16:17:37 +02:00
- name: copy btrbk config
copy:
src: "host_files/btrbk/{{ ansible_hostname }}/btrbk.conf"
dest: /etc/btrbk/btrbk.conf