aboutsummaryrefslogtreecommitdiffstats
path: root/roles/sky/tasks/main.yml
blob: 6144e82292fdef2e6e5664ccb5988a906144a34f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---
- name: Install network configuration
  copy:
    dest: '/etc/systemd/network/ens18.network'
    src: ens18.network
    owner: root
    group: root
    mode: 0644
  tags:
  - networkd

- import_tasks: certbot.yml
  tags: certbot

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