2014-05-11 16:22:41 +00:00
|
|
|
---
|
2015-04-10 20:17:45 +00:00
|
|
|
layout: doc
|
2015-10-14 03:31:03 +00:00
|
|
|
title: Qubes Service
|
2015-10-28 22:14:40 +00:00
|
|
|
permalink: /doc/qubes-service/
|
2015-10-11 07:04:59 +00:00
|
|
|
redirect_from:
|
2015-10-28 22:14:40 +00:00
|
|
|
- /en/doc/qubes-service/
|
2015-10-11 07:04:59 +00:00
|
|
|
- /doc/QubesService/
|
|
|
|
- /wiki/QubesService/
|
2014-05-11 16:22:41 +00:00
|
|
|
---
|
|
|
|
|
2019-04-06 18:44:36 -05:00
|
|
|
Usage documentation is on `qvm-service` man page. There are also described predefined services.
|
2014-05-11 16:22:41 +00:00
|
|
|
|
2019-04-06 18:44:36 -05:00
|
|
|
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:
|
2014-05-11 16:22:41 +00:00
|
|
|
|
2017-07-01 21:14:45 +02:00
|
|
|
In the VM, create `/etc/systemd/system/<service name>.service.d/30_qubes.conf` file
|
2017-02-03 04:04:23 +01:00
|
|
|
containing (you may need to create a directory for this file first):
|
2014-05-11 16:22:41 +00:00
|
|
|
|
2017-02-03 04:04:23 +01:00
|
|
|
~~~
|
|
|
|
[Unit]
|
|
|
|
ConditionPathExists=/var/run/qubes-service/<service name>
|
|
|
|
~~~
|
2014-05-11 16:22:41 +00:00
|
|
|
|
2017-07-01 21:14:45 +02:00
|
|
|
This will cause service to be started only when you enable it with qvm-service for this VM.
|
2019-04-06 18:44:36 -05:00
|
|
|
|