in→docs

This commit is contained in:
Marc Beninca 2019-08-25 22:15:32 +02:00
parent c3af60bbfd
commit 96f5a0771a
109 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,38 @@
Services
========
user
----
.. code:: shell
systemctl --user enable name.service
loginctl enable-linger
systemctl --user start name.service
.. note::
enable-linger prevents daemon to be killed at session exit
Example:
* ~/.config/systemd/user/multi-user.target.wants/httpy.service
.. code:: ini
[Unit]
Description=httpy
After=network-online.target
Wants=network-online.target
[Service]
ExecStart=/usr/bin/python3 -m http.server 8080
WorkingDirectory=%h/www
Restart=always
[Install]
WantedBy=multi-user.target
.. note::
%h is replaced by the user's home directory