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 
45 
46 
47 
---

- name: "[Alpine] Install package: oeffisearch"
  apk:
    name: oeffisearch
    state: present
  when: 
    - ansible_distribution == "Alpine" 

- name: "[OpenRC] Create service files" 
  template: 
    src: oeffisearch.initd.j2
    dest: "/etc/init.d/oeffisearch{{item}}"
    mode: 0755
  loop:
    - 1
    - 2
    - 3
    - 4
  when: 
    - ansible_service_mgr == "openrc"

- name: "Create directory: /var/log/oeffisearch"
  file:
    path: "/var/log/oeffisearch"
    mode: 0755
    state: directory
  loop:
    - 1
    - 2
    - 3
    - 4
  when: 
    - ansible_distribution == "Alpine" 

- name: "Create logfiles in /var/log/oeffisearch"
  file:
    path: "/var/log/oeffisearch/{{item}}.log"
    mode: 0777
    state: touch
  loop:
    - 1
    - 2
    - 3
    - 4
  when: 
    - ansible_distribution == "Alpine"