ctucx.git: ansible-configs

My personal ansible roles and playbooks [deprecated in favor of nixos]

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 
34 
---

- name: "[OpenRC] Disable and stop service: maddy"
  service:
    name: "maddy"
    enabled: yes
    state: stopped
  when: 
    - ansible_service_mgr == "openrc"


- name: "Remove package: maddy"
  apk:
    name: maddy
    state: absent
  when: 
    - ansible_distribution == "Alpine" 


- name: "Delete leftovers"
  file:
    path: "{{ item }}"
    state: absent
  with_items:
    - "/etc/init.d/maddy"
    - "/etc/maddy"
    - "/var/log/maddy.log"

- name: "[nftables] Delete rule for: maddy"
  file:
    path: /etc/nftables.d/maddy.nft
    state: absent
  notify: "Restart nftables"