bundle systemd-swap improvements
This commit is contained in:
parent
1bde29bb17
commit
fbee9a32df
1 changed files with 10 additions and 1 deletions
|
@ -4,14 +4,23 @@ assert isinstance(size, int)
|
||||||
actions = {
|
actions = {
|
||||||
'stop_swap': {
|
'stop_swap': {
|
||||||
'command': f'systemctl stop swapfile.swap',
|
'command': f'systemctl stop swapfile.swap',
|
||||||
'unless': f'rm /swapfile',
|
'unless': f'! systemctl is-active swapfile.swap',
|
||||||
'triggered': True,
|
'triggered': True,
|
||||||
},
|
},
|
||||||
|
'remove_swapfile': {
|
||||||
|
'command': f'rm /swapfile',
|
||||||
|
'unless': f'! test -e /swapfile',
|
||||||
|
'triggered': True,
|
||||||
|
'needs': {
|
||||||
|
'action:stop_swap',
|
||||||
|
},
|
||||||
|
},
|
||||||
'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={size} count=1',
|
||||||
'unless': f'stat -c %s /swapfile | grep ^{size}$',
|
'unless': f'stat -c %s /swapfile | grep ^{size}$',
|
||||||
'preceded_by': {
|
'preceded_by': {
|
||||||
'action:stop_swap',
|
'action:stop_swap',
|
||||||
|
'action:remove_swapfile',
|
||||||
},
|
},
|
||||||
'triggers': {
|
'triggers': {
|
||||||
'action:initialize_swapfile',
|
'action:initialize_swapfile',
|
||||||
|
|
Loading…
Reference in a new issue