From 06f710036c2aad482be9fb657cac3e7a6b857311 Mon Sep 17 00:00:00 2001 From: Dylan <145150333+dmmqz@users.noreply.github.com> Date: Thu, 21 Aug 2025 23:31:29 +0000 Subject: [PATCH] systemctl-{start,stop}: add pages (#17741) Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> --- pages/linux/systemctl-start.md | 8 ++++++++ pages/linux/systemctl-stop.md | 12 ++++++++++++ 2 files changed, 20 insertions(+) create mode 100644 pages/linux/systemctl-start.md create mode 100644 pages/linux/systemctl-stop.md diff --git a/pages/linux/systemctl-start.md b/pages/linux/systemctl-start.md new file mode 100644 index 0000000000..3346e60b8d --- /dev/null +++ b/pages/linux/systemctl-start.md @@ -0,0 +1,8 @@ +# systemctl start + +> Start systemd units. +> More information: . + +- Start a unit: + +`systemctl start {{unit}}` diff --git a/pages/linux/systemctl-stop.md b/pages/linux/systemctl-stop.md new file mode 100644 index 0000000000..b35fdf207b --- /dev/null +++ b/pages/linux/systemctl-stop.md @@ -0,0 +1,12 @@ +# systemctl stop + +> Stop systemd units. +> More information: . + +- Stop a unit: + +`systemctl stop {{unit}}` + +- Stop a service and suppress warnings: + +`systemctl stop --no-warn {{unit}}`