stage/systemd.unit.create: add Before option

Support the Before option in the Unit section of the unit file.
This commit is contained in:
Achilleas Koutsou 2024-05-13 16:09:22 +02:00 committed by Michael Vogt
parent cae97bb73a
commit 361614c202

View file

@ -19,6 +19,7 @@
" - 'Requires' - [strings]",
" - 'Wants' - [strings]",
" - 'After' - [strings]",
" - 'Before' - [strings]",
" - 'Service' section",
" - 'Type' - string",
" - 'RemainAfterExit' - bool",
@ -90,6 +91,12 @@
"type": "string"
}
},
"Before": {
"type": "array",
"items": {
"type": "string"
}
},
"Requires": {
"type": "array",
"items": {