summaryrefslogtreecommitdiff
path: root/chaos-at-home/ch-gw-lan.yml
blob: 37ed17fa2e66991ff24684d5abd3f6280fc1a87e (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
---
- name: Basic Setup
  hosts: ch-gw-lan
  roles:
  - role: apt-repo/base
  - role: core/base
  - role: core/sshd/base
  - role: core/zsh
  - role: core/ntp
  - role: network/dhcp-server
  - role: network/nftables/base
  post_tasks:
  - name: install etherwake
    apt:
      name: etherwake
      state: present

  - name: install wakeup scripts
    loop:
    - name: epimetheus
      interface: lan0
      mac: 90:2b:34:35:da:88
    - name: mc
      interface: lan0
      mac: 00:1e:8c:f4:e6:d8
    loop_control:
      label: "{{ item.name }}"
    copy:
      dest: "/usr/local/bin/wakeup-{{ item.name }}"
      content: |
        #!/bin/sh
        exec etherwake -i {{ item.interface }} {{ item.mac }}
      mode: 0755