rtfd/in/public/systemd/services.rst

39 lines
591 B
ReStructuredText
Raw Normal View History

2018-08-05 20:50:28 +00:00
Services
========
user
----
.. code:: shell
systemctl --user enable name.service
loginctl enable-linger
systemctl --user start name.service
2018-08-13 19:10:32 +00:00
.. note::
2018-08-05 20:50:28 +00:00
enable-linger prevents daemon to be killed at session exit
2018-08-05 21:01:54 +00:00
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
2018-08-13 19:10:32 +00:00
.. note::
2018-08-05 21:01:54 +00:00
%h is replaced by the user's home directory