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 
35 
36 
37 
38 
39 
40 
41 
42 
43 
44 
---

- name: Gather the package facts
  package_facts:
    manager: auto


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

- name: "[systemd] Disable and stop service: hostapd"
  systemd:
    name: hostapd
    enabled: no
    state: stopped
  when: 
    - ansible_service_mgr == "systemd"
    - "'hostapd' in ansible_facts.packages"


- name: "[Alpine] Remove package: hostapd" 
  apk:
    name: hostapd 
    state: absent
  when: 
    - ansible_distribution == "Alpine" 

- name: "[Archlinux] Remove package: hostapd" 
  pacman:
    name: hostapd 
    state: absent
  when: 
    - ansible_distribution == "Archlinux" 


- name: "Remove directory: /etc/hostapd"
  file:
    path: /etc/hostapd
    state: absent