further improve swap
This commit is contained in:
parent
f72ee7c85b
commit
e44fc3dc04
2 changed files with 15 additions and 17 deletions
|
@ -1,5 +1,4 @@
|
||||||
size = node.metadata.get('systemd-swap')
|
size_mb = node.metadata.get('systemd-swap')//1_000_000
|
||||||
assert isinstance(size, int)
|
|
||||||
|
|
||||||
actions = {
|
actions = {
|
||||||
'stop_swap': {
|
'stop_swap': {
|
||||||
|
@ -16,8 +15,8 @@ actions = {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
'create_swapfile': {
|
'create_swapfile': {
|
||||||
'command': f'dd if=/dev/zero of=/swapfile bs={size} count=1',
|
'command': f'dd if=/dev/zero of=/swapfile bs=1000000 count={size_mb}',
|
||||||
'unless': f'stat -c %s /swapfile | grep ^{size}$',
|
'unless': f'stat -c %s /swapfile | grep ^{size_mb*1_000_000}$',
|
||||||
'preceded_by': {
|
'preceded_by': {
|
||||||
'action:stop_swap',
|
'action:stop_swap',
|
||||||
'action:remove_swapfile',
|
'action:remove_swapfile',
|
||||||
|
@ -27,32 +26,31 @@ actions = {
|
||||||
'svc_systemd:swapfile.swap:restart',
|
'svc_systemd:swapfile.swap:restart',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
'swapfile_mode': {
|
||||||
|
'command': f'chmod 600 /swapfile',
|
||||||
|
'unless': f'stat -c "%a" /swapfile | grep -q "^600$"',
|
||||||
|
'needs': {
|
||||||
|
'action:create_swapfile',
|
||||||
|
},
|
||||||
|
'triggers': {
|
||||||
|
'svc_systemd:swapfile.swap:restart',
|
||||||
|
},
|
||||||
|
},
|
||||||
'initialize_swapfile': {
|
'initialize_swapfile': {
|
||||||
'command': f'mkswap /swapfile',
|
'command': f'mkswap /swapfile',
|
||||||
'triggered': True,
|
'triggered': True,
|
||||||
'needs': {
|
'needs': {
|
||||||
'action:create_swapfile',
|
'action:swapfile_mode',
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
files = {
|
|
||||||
'/swapfile': {
|
|
||||||
'content_type': 'any',
|
|
||||||
'mode': '600',
|
|
||||||
'triggers': {
|
|
||||||
'svc_systemd:swapfile.swap:restart',
|
|
||||||
},
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
svc_systemd = {
|
svc_systemd = {
|
||||||
'swapfile.swap': {
|
'swapfile.swap': {
|
||||||
'preceded_by': {
|
'preceded_by': {
|
||||||
'action:initialize_swapfile',
|
'action:initialize_swapfile',
|
||||||
},
|
},
|
||||||
'needs': {
|
'needs': {
|
||||||
'file:/swapfile',
|
|
||||||
'action:initialize_swapfile',
|
'action:initialize_swapfile',
|
||||||
'action:systemd-reload',
|
'action:systemd-reload',
|
||||||
},
|
},
|
||||||
|
|
|
@ -107,7 +107,7 @@
|
||||||
'steam-chat-viewer': {
|
'steam-chat-viewer': {
|
||||||
'hostname': 'steam-chats.ckn.li',
|
'hostname': 'steam-chats.ckn.li',
|
||||||
},
|
},
|
||||||
'systemd-swap': 4*10**9,
|
'systemd-swap': 4_000_000_000,
|
||||||
'tasmota-charge': {
|
'tasmota-charge': {
|
||||||
'phone': {
|
'phone': {
|
||||||
'ip': '10.0.0.175',
|
'ip': '10.0.0.175',
|
||||||
|
|
Loading…
Reference in a new issue