aboutsummaryrefslogtreecommitdiff
path: root/contrib/systemd/qemu-pr-helper.service
diff options
context:
space:
mode:
authorPaolo Bonzini <pbonzini@redhat.com>2017-11-24 17:44:22 +0100
committerPaolo Bonzini <pbonzini@redhat.com>2017-12-20 22:29:26 +0100
commit2ba60ec1751844fe75d32dd80ebb3d72480b4b17 (patch)
tree1b827bbaa884c89c153bbc67f73df964cad55458 /contrib/systemd/qemu-pr-helper.service
parenta4a9b6eaf35dbe4bf0e069854945bf5e45fc7eab (diff)
contrib: add systemd unit files
This lets distros standardize on how QEMU should install systemd services for qemu-ga and qemu-pr-helper. The qemu-ga unit file comes from Fedora, but I checked that Debian is using the same path for the virtio-serisal port. I would like to include this in 2.11, so that the qemu-pr-helper socket can be standardized across distros. Note however that the files are not installed. We can add a configure option in 2.12 perhaps, but it's too late now; documenting the files in the release notes should do. Suggested-by: Daniel P. Berrange <berrange@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Message-Id: <20171124164422.3960-1-pbonzini@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'contrib/systemd/qemu-pr-helper.service')
-rw-r--r--contrib/systemd/qemu-pr-helper.service15
1 files changed, 15 insertions, 0 deletions
diff --git a/contrib/systemd/qemu-pr-helper.service b/contrib/systemd/qemu-pr-helper.service
new file mode 100644
index 0000000000..a1d27b0221
--- /dev/null
+++ b/contrib/systemd/qemu-pr-helper.service
@@ -0,0 +1,15 @@
+[Unit]
+Description=Persistent Reservation Daemon for QEMU
+
+[Service]
+WorkingDirectory=/tmp
+Type=simple
+ExecStart=/usr/bin/qemu-pr-helper
+PrivateTmp=yes
+ProtectSystem=strict
+ReadWritePaths=/var/run
+RestrictAddressFamilies=AF_UNIX
+Restart=always
+RestartSec=0
+
+[Install]