summaryrefslogtreecommitdiffstats
path: root/roles/clients/tasks/timers.yml
blob: 93625c0715ff9c1ed1e5c57d0514e2a952a955dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
- name: Backup des machines virtuelles
  file:
    path: /usr/local/bin/backvirt-machines.sh
    state: absent

- name: Unité systemd pour le backup vm
  file:
    path: /etc/systemd/system/backvirt-machines.service
    state: absent
  notify: reload systemd

- name: Timer systemd pour le backup vm
  file:
    path: /etc/systemd/system/backvirt-machines.timer
    state: absent
  notify: reload systemd

- name: Restauration du snapshot de la machine virtuelle
  file:
    path: /usr/local/bin/reroll-virtmachine.sh
    state: absent

- name: Unité systemd pour le restore vm
  file:
    path: /etc/systemd/system/reroll-virtmachine.service
    state: absent
  notify: reload systemd

- name: Timer systemd pour le restore vm
  file:
    path: /etc/systemd/system/reroll-virtmachine.timer
    state: absent
  notify: reload systemd