Merge branch 'marmarta-patch-2'

This commit is contained in:
Andrew David Wong 2017-07-01 15:47:57 -05:00
commit 0fb997c101
No known key found for this signature in database
GPG Key ID: 8CE137352A019A17

View File

@ -12,7 +12,7 @@ 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:
Create `/etc/systemd/system/<service name>.service.d/30_qubes.conf` file In the VM, create `/etc/systemd/system/<service name>.service.d/30_qubes.conf` file
containing (you may need to create a directory for this file first): containing (you may need to create a directory for this file first):
~~~ ~~~
@ -20,4 +20,4 @@ containing (you may need to create a directory for this file first):
ConditionPathExists=/var/run/qubes-service/<service name> ConditionPathExists=/var/run/qubes-service/<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 this VM.