mirror of
https://github.com/QubesOS/qubes-doc.git
synced 2025-11-06 21:43:06 -05:00
Addresses without a slash are redirected to a version with slash, but with forced protocol http instead of https.
933 B
933 B
| layout | title | permalink | redirect_from |
|---|---|---|---|
| doc | QubesService | /doc/QubesService/ | /wiki/QubesService/ |
Usage documentation is on qvm-service manual page. There are also described predefined services.
Under the hood enabled service in VM is signaled by file in /var/run/qubes-service. This can be used to implement almost enable/disable per-VM switch controlled by dom0. Adding support for systemd services is pretty simple:
-
Disable old service:
systemctl disable <service name> -
Create
/etc/systemd/system/<service name>.servicefile containing:{% highlight trac-wiki %} .include /lib/systemd/system/.service [Unit] ConditionPathExists=/var/run/qubes-service/ {% endhighlight %}
-
Enable new service:
systemctl enable <service name>.
This will cause service to be started only when you enable it with qvm-service for given VM.