wol-sleeper

This commit is contained in:
mwiegand 2022-02-12 16:58:44 +01:00
parent b579dc4928
commit 98ba428bb7
4 changed files with 75 additions and 0 deletions

View file

@ -0,0 +1,28 @@
# wake on lan
## woken
wol by magic packet
```
ethtool -s enp1s0 wol g
```
p Wake on phy activity
u Wake on unicast messages
m Wake on multicast messages
b Wake on broadcast messages
a Wake on ARP
g Wake on MagicPacket(tm)
s Enable SecureOn(tm) password for MagicPacket(tm)
d Disable (wake on nothing). This option clears all previous options.
```
systemctl suspend
```
## waker
```
wakeonlan d8:cb:8a:e7:be:c6
```

View file

@ -0,0 +1,45 @@
@metadata_reactor.provides(
'apt/packages/ethtool',
'systemd/units/enable-wol',
'systemd/services/enable-wol.service',
)
def systemd(metadata):
interfaces = set(
conf['interface']
for conf in metadata.get('network').values()
if conf.get('wol', False)
)
if not interfaces:
return {}
return {
'apt': {
'packages': {
'ethtool': {},
},
},
'systemd': {
'units': {
'enable-wol.service': {
'Unit': {
'After': 'network.target',
},
'Service': {
'Type': 'oneshot',
'RemainAfterExit': 'yes',
'ExecStart': set(
f"ethtool -s {conf['interface']} wol g"
for itnerface in interfaces
),
},
'Install': {
'WantedBy': 'multi-user.target',
},
},
},
'services': {
'enable-wol.service': {},
},
},
}

View file

@ -1,5 +1,6 @@
{
'bundles': {
'hardware',
'wol-sleeper',
},
}

View file

@ -18,6 +18,7 @@
'interface': 'enp1s0',
'ipv4': '10.0.0.5/24',
'gateway4': '10.0.0.1',
'wol': True,
},
},
'backup-server': {