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

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

- name: Remove broken service links
  file:
    path: '{{ item }}'
    state: absent
  with_items:
  - /etc/systemd/system/bluetooth.target.wants
  tags:
  - systemd

- import_tasks: console.yml
  tags: console
- import_tasks: jumbotron.yml
  tags: jumbotron
- import_tasks: autologin.yml
  tags: autologin
- import_tasks: irssi.yml
  tags: irssi
- import_tasks: fakta.yml
  tags: fakta

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