1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-01 09:15:22 +02:00

systemctl: fix token syntax for multicommand examples (#5274)

This commit is contained in:
Axel Navarro 2021-02-19 07:13:45 -03:00 committed by GitHub
parent 70a76e5280
commit a808abf3db
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,7 +9,7 @@
- Start/Stop/Restart/Reload a service:
`systemctl start/stop/restart/reload {{unit}}`
`systemctl {{start|stop|restart|reload}} {{unit}}`
- Show the status of a unit:
@ -17,11 +17,11 @@
- Enable/Disable a unit to be started on bootup:
`systemctl enable/disable {{unit}}`
`systemctl {{enable|disable}} {{unit}}`
- Mask/unmask a unit to prevent enablement and manual activation:
`systemctl mask/unmask {{unit}}`
`systemctl {{mask|unmask}} {{unit}}`
- Reload systemd, scanning for new or changed units: