aboutsummaryrefslogtreecommitdiffstats
path: root/roles/mail1/tasks/main.yml
blob: c66a6f8cd8086f0610d6838d28e8af17435eaf44 (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
---
- name: Install network configuration
  copy:
    dest: '/etc/systemd/network/10-ens3.network'
    src: ens3.network
    owner: root
    group: root
    mode: 0644
  tags:
  - networkd-config

- name: Disable unused services
  systemd:
    name: '{{ item }}'
    enabled: no
  with_items:
  - remote-fs.target
  tags:
  - systemd

- import_tasks: haveged.yml
  tags: haveged

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