diff options
author | H. P. <harald.p.@xmart.de> | 2018-07-10 10:30:24 +0200 |
---|---|---|
committer | H. P. <harald.p.@xmart.de> | 2018-07-10 10:30:24 +0200 |
commit | 819374205af3ae702a22d1dc6d0542d25ace05bd (patch) | |
tree | bd88dc1d01c9c03a51d52b4d802d18cbd6cf28d9 /etc/systemd/system/kvm-network@.service | |
download | kvm-helper-819374205af3ae702a22d1dc6d0542d25ace05bd.tar.bz2 |
Initial commit, ported from systemd-units.git
Diffstat (limited to 'etc/systemd/system/kvm-network@.service')
-rw-r--r-- | etc/systemd/system/kvm-network@.service | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/etc/systemd/system/kvm-network@.service b/etc/systemd/system/kvm-network@.service new file mode 100644 index 0000000..aca4e4b --- /dev/null +++ b/etc/systemd/system/kvm-network@.service @@ -0,0 +1,15 @@ +[Unit] +Description=KVM network %i +Requires=libvirtd.service +After=libvirtd.service + +[Service] +Type=oneshot +ExecStart=/usr/local/bin/kvmhelper -q net-start %i +ExecStop=/usr/local/bin/kvmhelper -q net-stop %i +RemainAfterExit=yes +TimeoutStartSec=10s +TimeoutStopSec=10s + +[Install] +WantedBy=multi-user.target |