diff options
Diffstat (limited to 'roles/raspbian-template/tasks')
-rw-r--r-- | roles/raspbian-template/tasks/main.yml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/roles/raspbian-template/tasks/main.yml b/roles/raspbian-template/tasks/main.yml new file mode 100644 index 0000000..31f91f5 --- /dev/null +++ b/roles/raspbian-template/tasks/main.yml @@ -0,0 +1,12 @@ +--- +- name: Install network configuration + copy: + dest: '/etc/systemd/network/10-eth0.network' + src: eth0.network + owner: root + group: root + mode: 0644 + tags: + - networkd-config + +# vim: set ts=2 sw=2 et: |