diff --git a/pages/linux/systemctl-add-wants.md b/pages/linux/systemctl-add-wants.md new file mode 100644 index 0000000000..a561da2ed1 --- /dev/null +++ b/pages/linux/systemctl-add-wants.md @@ -0,0 +1,16 @@ +# systemctl add-wants + +> Add `Wants` dependencies to a target for one or more units. +> More information: . + +- Add a `Wants` dependency from a target to a unit: + +`systemctl add-wants {{target}} {{unit}}` + +- Add multiple `Wants` dependencies at once: + +`systemctl add-wants {{target}} {{unit1 unit2 ...}}` + +- Add a user-level `Wants` dependency: + +`systemctl --user add-wants {{target}} {{unit}}`