From f3fe4543887bbb57de10e096da9dfd489c61f254 Mon Sep 17 00:00:00 2001 From: TheRootDaemon Date: Thu, 6 Nov 2025 07:34:28 +0530 Subject: [PATCH 1/3] systemctl-set-property: add page --- pages/linux/systemctl-set-property.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 pages/linux/systemctl-set-property.md diff --git a/pages/linux/systemctl-set-property.md b/pages/linux/systemctl-set-property.md new file mode 100644 index 00000000000000..c3a1945c0c5964 --- /dev/null +++ b/pages/linux/systemctl-set-property.md @@ -0,0 +1,24 @@ +# systemctl set-property + +> Set the specified unit properties at runtime. +> More information: . + +- Set a property for a running service: + +`systemctl set-property {{unit}} {{property}}={{value}}` + +- Set multiple properties at once: + +`systemctl set-property {{unit}} {{property_1=value_1 property_2=value_2 ...}}` + +- Set a property only for the current runtime session (not persistent): + +`systemctl set-property --runtime {{unit}} {{property}}={{value}}` + +- Reset a property to its default value: + +`systemctl set-property {{unit}} {{property}}=` + +- Reset multiple properties to its default values: + +`systemctl set-property {{unit}} {{property_1= property_2= ...}}` From ebabc10e33c19f1bb51b28d0b14b7633ce1955ec Mon Sep 17 00:00:00 2001 From: Harshavardhan Date: Thu, 6 Nov 2025 20:45:31 +0530 Subject: [PATCH 2/3] chore: Fix link Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> --- pages/linux/systemctl-set-property.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/linux/systemctl-set-property.md b/pages/linux/systemctl-set-property.md index c3a1945c0c5964..59805be70ae29e 100644 --- a/pages/linux/systemctl-set-property.md +++ b/pages/linux/systemctl-set-property.md @@ -1,7 +1,7 @@ # systemctl set-property > Set the specified unit properties at runtime. -> More information: . +> More information: . - Set a property for a running service: From dbbca2d9b20e1091621911f6428aa6010e561aeb Mon Sep 17 00:00:00 2001 From: Harshavardhan Date: Thu, 6 Nov 2025 21:07:18 +0530 Subject: [PATCH 3/3] chore: Align flags Co-authored-by: Managor <42655600+Managor@users.noreply.github.com> --- pages/linux/systemctl-set-property.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/linux/systemctl-set-property.md b/pages/linux/systemctl-set-property.md index 59805be70ae29e..4c5bc7b74cfa70 100644 --- a/pages/linux/systemctl-set-property.md +++ b/pages/linux/systemctl-set-property.md @@ -13,7 +13,7 @@ - Set a property only for the current runtime session (not persistent): -`systemctl set-property --runtime {{unit}} {{property}}={{value}}` +`systemctl set-property {{unit}} {{property}}={{value}} --runtime` - Reset a property to its default value: