initialize_swapfile unless
This commit is contained in:
parent
e8a5379ccd
commit
5dd6e56ca9
1 changed files with 1 additions and 5 deletions
|
@ -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',
|
||||||
|
|
Loading…
Reference in a new issue