bundle systemd-swap improvements

This commit is contained in:
mwiegand 2022-07-07 15:45:28 +02:00
parent 1bde29bb17
commit fbee9a32df

View file

@ -4,14 +4,23 @@ assert isinstance(size, int)
actions = {
'stop_swap': {
'command': f'systemctl stop swapfile.swap',
'unless': f'rm /swapfile',
'unless': f'! systemctl is-active swapfile.swap',
'triggered': True,
},
'remove_swapfile': {
'command': f'rm /swapfile',
'unless': f'! test -e /swapfile',
'triggered': True,
'needs': {
'action:stop_swap',
},
},
'create_swapfile': {
'command': f'dd if=/dev/zero of=/swapfile bs={size} count=1',
'unless': f'stat -c %s /swapfile | grep ^{size}$',
'preceded_by': {
'action:stop_swap',
'action:remove_swapfile',
},
'triggers': {
'action:initialize_swapfile',