blob: 8078aa653565397ae4858022f0c6c4d14b776f2e (
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
|
---
- name: Basic Setup
hosts: ch-jump
roles:
- role: apt-repo/base
- role: core/base
- role: core/sshd/base
- role: core/zsh
- role: core/ntp
- role: core/sshd/jump
- role: network/nftables/base
post_tasks:
- name: install etherwake
apt:
name: etherwake
state: present
- name: install wakeup scripts
loop:
- name: equinoxws
interface: mgmt0
mac: b4:2e:99:9f:bb:7c
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
|