wol +
This commit is contained in:
parent
ae929e4773
commit
d12b446f34
5 changed files with 13 additions and 6 deletions
3
bundles/wol-sleeper/items.py
Normal file
3
bundles/wol-sleeper/items.py
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
waker_node = repo.get_node(node.metadata.get('wol-sleeper/waker'))
|
||||||
|
if not waker_node.has_bundle('wol-waker'):
|
||||||
|
raise Exception(f'waker node {waker_node.name} does not have bundle wol-waker')
|
|
@ -29,8 +29,8 @@ def systemd(metadata):
|
||||||
'Type': 'oneshot',
|
'Type': 'oneshot',
|
||||||
'RemainAfterExit': 'yes',
|
'RemainAfterExit': 'yes',
|
||||||
'ExecStart': set(
|
'ExecStart': set(
|
||||||
f"ethtool -s {conf['interface']} wol g"
|
f"ethtool -s {interface} wol g"
|
||||||
for itnerface in interfaces
|
for interface in interfaces
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
'Install': {
|
'Install': {
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
{
|
{
|
||||||
'bundles': {
|
'bundles': {
|
||||||
'hardware',
|
'hardware',
|
||||||
'wol-sleeper',
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,6 +8,7 @@
|
||||||
],
|
],
|
||||||
'bundles': [
|
'bundles': [
|
||||||
'smartctl',
|
'smartctl',
|
||||||
|
'wol-sleeper',
|
||||||
'zfs',
|
'zfs',
|
||||||
'zfs-mirror',
|
'zfs-mirror',
|
||||||
],
|
],
|
||||||
|
@ -35,6 +36,9 @@
|
||||||
'apm': 1,
|
'apm': 1,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
'wol-sleeper': {
|
||||||
|
'waker': 'home.server',
|
||||||
|
},
|
||||||
'zfs-mirror': {
|
'zfs-mirror': {
|
||||||
'server': 'wb.offsite-backups',
|
'server': 'wb.offsite-backups',
|
||||||
},
|
},
|
||||||
|
|
|
@ -13,6 +13,7 @@
|
||||||
'bundles': [
|
'bundles': [
|
||||||
'apcupsd',
|
'apcupsd',
|
||||||
'build-agent',
|
'build-agent',
|
||||||
|
'crystal',
|
||||||
'gitea',
|
'gitea',
|
||||||
'gollum',
|
'gollum',
|
||||||
'grafana',
|
'grafana',
|
||||||
|
@ -22,11 +23,11 @@
|
||||||
'postgresql',
|
'postgresql',
|
||||||
'redis',
|
'redis',
|
||||||
'smartctl',
|
'smartctl',
|
||||||
'wireguard',
|
|
||||||
'zfs',
|
|
||||||
'crystal',
|
|
||||||
'raspberrymatic-cert',
|
'raspberrymatic-cert',
|
||||||
'tasmota-charge',
|
'tasmota-charge',
|
||||||
|
'wireguard',
|
||||||
|
'wol-waker',
|
||||||
|
'zfs',
|
||||||
],
|
],
|
||||||
'metadata': {
|
'metadata': {
|
||||||
'id': 'af96709e-b13f-4965-a588-ef2cd476437a',
|
'id': 'af96709e-b13f-4965-a588-ef2cd476437a',
|
||||||
|
|
Loading…
Reference in a new issue