mirror of
https://github.com/QubesOS/qubes-doc.git
synced 2025-08-03 03:56:38 -04:00

This is done using tools at https://github.com/maiska/qubes-translation-utilz, commit 4c8e2a7f559fd37e29b51769ed1ab1c6cf92e00d.
22 lines
812 B
ReStructuredText
22 lines
812 B
ReStructuredText
=============
|
|
Qubes service
|
|
=============
|
|
|
|
.. warning::
|
|
|
|
This page is intended for advanced users.
|
|
|
|
Usage documentation is in the ``qvm-service`` man page. There are also described predefined services.
|
|
|
|
Under the hood, an enabled service in a VM is signaled by a file in ``/var/run/qubes-service``. This can be used to implement an almost enable/disable **per-VM** switch controlled by dom0.
|
|
|
|
Adding support for systemd services is pretty simple. In the VM, create the following file (and directory, if needed): ``/etc/systemd/system/<service name>.service.d/30_qubes.conf``. It should contain the following:
|
|
|
|
.. code:: bash
|
|
|
|
[Unit]
|
|
ConditionPathExists=/var/run/qubes-service/<service name>
|
|
|
|
|
|
|
|
This will cause the service to be started only when you enable it with ``qvm-service`` for this VM.
|