initialize_swapfile unless

This commit is contained in:
cronekorkn 2023-05-08 16:35:39 +02:00
parent e8a5379ccd
commit 5dd6e56ca9
Signed by: cronekorkn
SSH key fingerprint: SHA256:v0410ZKfuO1QHdgKBsdQNF64xmTxOF8osF1LIqwTcVw

View file

@ -22,7 +22,6 @@ actions = {
'action:remove_swapfile', 'action:remove_swapfile',
}, },
'triggers': { 'triggers': {
'action:initialize_swapfile',
'svc_systemd:swapfile.swap:restart', 'svc_systemd:swapfile.swap:restart',
}, },
}, },
@ -38,7 +37,7 @@ actions = {
}, },
'initialize_swapfile': { 'initialize_swapfile': {
'command': f'mkswap /swapfile', 'command': f'mkswap /swapfile',
'triggered': True, 'unless': 'blkid -o value -s TYPE /swapfile | grep -q "^swap$"',
'needs': { 'needs': {
'action:swapfile_mode', 'action:swapfile_mode',
} }
@ -47,9 +46,6 @@ actions = {
svc_systemd = { svc_systemd = {
'swapfile.swap': { 'swapfile.swap': {
'preceded_by': {
'action:initialize_swapfile',
},
'needs': { 'needs': {
'action:initialize_swapfile', 'action:initialize_swapfile',
'action:systemd-reload', 'action:systemd-reload',