From a808abf3db7319da4a08571d435057b5190561c7 Mon Sep 17 00:00:00 2001 From: Axel Navarro Date: Fri, 19 Feb 2021 07:13:45 -0300 Subject: [PATCH] systemctl: fix token syntax for multicommand examples (#5274) --- pages/linux/systemctl.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pages/linux/systemctl.md b/pages/linux/systemctl.md index 73623943c9..a1f288c957 100644 --- a/pages/linux/systemctl.md +++ b/pages/linux/systemctl.md @@ -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: