aboutsummaryrefslogblamecommitdiffstats
path: root/roles/doorputer/tasks/main.yml
blob: 99e54e23a5a660c367d7dfc0a95aea2d13ecada4 (plain) (tree)




















                                                

                        





                              
---
- 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: