Update qubes-service page to use drop-ins instead of full service override

This commit is contained in:
Marek Marczykowski-Górecki 2017-02-03 04:04:23 +01:00
parent 0716df2420
commit bd4298d104
No known key found for this signature in database
GPG Key ID: F32894BE9684938A

View File

@ -12,15 +12,12 @@ Usage documentation is on [qvm-service manual page](/doc/dom0-tools/qvm-service/
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: 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:
1. Disable old service: `systemctl disable <service name>` Create `/etc/systemd/system/<service name>.service.d/30_qubes.conf` file
2. Create `/etc/systemd/system/<service name>.service` file containing: containing (you may need to create a directory for this file first):
~~~ ~~~
.include /lib/systemd/system/<service name>.service [Unit]
[Unit] ConditionPathExists=/var/run/qubes-service/<service name>
ConditionPathExists=/var/run/qubes-service/<service name> ~~~
~~~
3. 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. This will cause service to be started only when you enable it with qvm-service for given VM.