aboutsummaryrefslogtreecommitdiffstats
path: root/roles/doorputer/tasks/main.yml
blob: 99e54e23a5a660c367d7dfc0a95aea2d13ecada4 (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
---
- 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: Set message of the day
  copy:
    dest: '/etc/motd'
    src: motd
    owner: root
    group: root
    mode: 0644
  tags:
  - motd

- import_tasks: alsa.yml
  tags: alsa
- import_tasks: bluetooth.yml
  tags: bluetooth
- import_tasks: lockserver.yml
  tags: lockserver

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