mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-10 15:01:05 +01:00
25 lines
715 B
YAML
25 lines
715 B
YAML
- name: "create {{docker_health_btrfs_folder}}"
|
|
file:
|
|
path: "{{docker_health_btrfs_folder}}"
|
|
state: directory
|
|
mode: 0755
|
|
|
|
- name: create health-btrfs.sh
|
|
copy:
|
|
src: health-btrfs.sh
|
|
dest: "{{docker_health_btrfs_folder}}health-btrfs.sh"
|
|
|
|
- name: create health-btrfs.service
|
|
template:
|
|
src: health-btrfs.service.j2
|
|
dest: /etc/systemd/system/health-btrfs.service
|
|
notify: reload health-btrfs.service
|
|
|
|
- name: create health-btrfs.timer
|
|
template:
|
|
src: health-btrfs.timer.j2
|
|
dest: "/etc/systemd/system/health-btrfs.timer"
|
|
register: health_btrs_timer
|
|
changed_when: health_btrs_timer.changed or activate_all_timers | default(false) | bool
|
|
notify: restart health-btrfs.timer
|