aboutsummaryrefslogtreecommitdiffstats
path: root/roles/space_server/tasks/main.yml
blob: b19e8a344fd27f2ea0b68f32a466de8bb5ca1182 (plain) (blame)
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
---
- name: fstab
  template:
    dest: '/etc/fstab'
    src: fstab.j2
    owner: root
    group: root
    mode: 0644
  tags:
  - fstab

- name: Disable selinux-autorelabel-mark service
  systemd:
    name: selinux-autorelabel-mark.service
    enabled: no
    masked: no
    state: stopped
  when: not chroot
  tags:
  - selinux
- name: '- when in chroot'
  command: systemctl disable selinux-autorelabel-mark.service
  when: chroot
  tags:
  - selinux

- name: Extra ssh hosts
  copy:
    dest: '/etc/ssh/ssh_config.d/60-switches.conf'
    src: ssh-switches.conf
    owner: root
    group: root
    mode: 0644
  tags:
  - ssh

- import_tasks: kernel.yml
  tags: kernel
- import_tasks: gettys.yml
  tags: gettys
- import_tasks: networkd.yml
  tags: networkd
- import_tasks: nftables.yml
  tags: nftables
- import_tasks: certbot.yml
  tags: certbot
- import_tasks: chrony.yml
  tags: chrony
- import_tasks: bird.yml
  tags: bird
- import_tasks: dhcpd.yml
  tags: dhcpd
- import_tasks: radius.yml
  tags: radius
  when: radius_passwords is defined
- import_tasks: named.yml
  tags: named
- import_tasks: tayga.yml
  tags: tayga
- import_tasks: avahi.yml
  tags: avahi

# vim: set ts=2 sw=2 et: