Update cheatsheets

This commit is contained in:
ivuorinen
2025-11-11 00:20:40 +00:00
parent 9420175cb8
commit 3f758d63f7
10 changed files with 114 additions and 19 deletions

View File

@@ -0,0 +1,21 @@
---
syntax: markdown
tags: [tldr, linux]
source: https://github.com/tldr-pages/tldr.git
---
# systemctl reset-failed
> Reset the "failed" state of one or more units.
> More information: <https://www.freedesktop.org/software/systemd/man/systemctl.html#reset-failed%20%5BPATTERN%E2%80%A6%5D>.
- Reset the failed state of all units:
`systemctl reset-failed`
- Reset the failed state of a specific unit:
`systemctl reset-failed {{unit}}`
- Reset multiple units at once:
`systemctl reset-failed {{unit_1 unit_2 ...}}`