Systemd-analyze: Unterschied zwischen den Versionen
Erscheinungsbild
Keine Bearbeitungszusammenfassung |
K Textersetzung - „line>“ durch „line copy>“ |
||
(2 dazwischenliegende Versionen desselben Benutzers werden nicht angezeigt) | |||
Zeile 1: | Zeile 1: | ||
Use the systemd-analyze verify command to check if a SystemD service file is valid and has no syntax errors. | Use the systemd-analyze verify command to check if a SystemD service file is valid and has no syntax errors. | ||
<syntaxhighlight lang="bash" highlight="1" line> | <syntaxhighlight lang="bash" highlight="1" line copy> | ||
sudo systemd-analyze verify /etc/systemd/system/my-service.service | sudo systemd-analyze verify /etc/systemd/system/my-service.service | ||
</syntaxhighlight> | </syntaxhighlight> | ||
If the service file is valid, the command will return nothing. If there are any errors, they will be displayed in the output. | If the service file is valid, the command will return nothing. If there are any errors, they will be displayed in the output. | ||
<syntaxhighlight lang="bash" highlight="1" line> | <syntaxhighlight lang="bash" highlight="1" line copy> | ||
/etc/systemd/system/my-service.service:3: Failed to add dependency on my-service.service, ignoring: Invalid argument | /etc/systemd/system/my-service.service:3: Failed to add dependency on my-service.service, ignoring: Invalid argument | ||
</syntaxhighlight> | </syntaxhighlight> | ||
== Siehe auch == | |||
# https://akashrajpurohit.com/snippets/verify-a-systemd-service-file/ | # https://akashrajpurohit.com/snippets/verify-a-systemd-service-file/ | ||
# https://www.freedesktop.org/software/systemd/man/latest/systemd-analyze.html | |||
# https://manpages.debian.org/bookworm/manpages-de/systemd-analyze.1.de.html | |||
[[Kategorie:Systemd]] | [[Kategorie:Systemd]] |
Aktuelle Version vom 11. Mai 2025, 13:45 Uhr
Use the systemd-analyze verify command to check if a SystemD service file is valid and has no syntax errors.
sudo systemd-analyze verify /etc/systemd/system/my-service.service
If the service file is valid, the command will return nothing. If there are any errors, they will be displayed in the output.
/etc/systemd/system/my-service.service:3: Failed to add dependency on my-service.service, ignoring: Invalid argument