From 51c8e7202d6cc555661c7920e726975fb5b7d22c Mon Sep 17 00:00:00 2001 From: mqus <8398165+mqus@users.noreply.github.com> Date: Sat, 28 Dec 2019 21:38:23 +0100 Subject: [PATCH] Updated Setup as a systemd service (markdown) --- Setup-as-a-systemd-service.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/Setup-as-a-systemd-service.md b/Setup-as-a-systemd-service.md index ef59f4a..821f774 100644 --- a/Setup-as-a-systemd-service.md +++ b/Setup-as-a-systemd-service.md @@ -53,8 +53,13 @@ AmbientCapabilities=CAP_NET_BIND_SERVICE WantedBy=multi-user.target ``` Change all paths to match your installation (`WorkingDirectory` and `ReadWriteDirectory` should be the same), -name this file `bitwarden_rs.service` and put it into `/etc/systemd/system` . -To make systemd aware of it, run +name this file `bitwarden_rs.service` and put it into `/etc/systemd/system`. + +If you have to change an existing systemd file (which was provided to you by the package you installed), you can add your changes by using +``` +$ sudo systemctl edit bitwarden_rs.service +``` +To make systemd aware of your new file or any changes you made, run ``` $ sudo systemctl daemon-reload ```