Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions docs/Running CMS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,16 @@ services running when the user is not logged in. (Beware that the lingering user
instance of systemd does not automatically gain new privileges when you add the
to a new group. You might need to ``sudo loginctl terminate-user ...``.)

CMS depends on configured networking, but unfortunately, ``systemd`` does not allow
dependencies between user services and system services. A possible work-around is
to make system-wide ``user@UID.service`` (where ``UID`` is the user ID of the user
running CMS) depend on ``network-online.target`` by adding a drop-in configuration file
with::

[Unit]
After=network-online.target
Wants=network-online.target


Recommended setup
=================
Expand Down
Loading