diff options
author | H. P. <harald.p.@xmart.de> | 2018-07-05 21:45:26 +0200 |
---|---|---|
committer | H. P. <harald.p.@xmart.de> | 2018-07-05 21:45:26 +0200 |
commit | 3242b85a68b81f900642001d837e4ce49b99b89c (patch) | |
tree | d9cd05abb302105bbf5e364c73ebdf30dd2a62ac /etc/systemd/system | |
parent | 6edf5a45aecf4063f20313dd2e24067b14220901 (diff) | |
download | systemd-units-3242b85a68b81f900642001d837e4ce49b99b89c.tar.bz2 |
kvm-clustervm was missing, for completeness
Diffstat (limited to 'etc/systemd/system')
-rw-r--r-- | etc/systemd/system/kvm-clustervm@.service | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/etc/systemd/system/kvm-clustervm@.service b/etc/systemd/system/kvm-clustervm@.service new file mode 100644 index 0000000..1d86851 --- /dev/null +++ b/etc/systemd/system/kvm-clustervm@.service @@ -0,0 +1,33 @@ +# Work in progress: +# - Start needs to be more sophisticated in reaction to state of domains +# - Stop should not just do a post-sleep, but instead the post section should +# carry a script polling the state of the machine and hammering it into the +# coffing after a certain timeout +[Unit] +Description=VM %i (with cluster inside) +Wants=kvm-infravm@iscsi.service +After=kvm-infravm@iscsi.service +Wants=lvm2-monitor.service +Requires=libvirtd.service +Requires=kvm-firewall.service +Requires=kvm-network@sosaria05.service +Requires=kvm-network@san-cluster.service +After=kvm-firewall.service +After=libvirtd.service +After=lvm2-monitor.service +After=kvm-network@sosaria05.service +After=kvm-network@san-cluster.service +PartOf=cluster-muromachi.target + +[Service] +Type=forking +ExecStartPre=/bin/sleep 5 +ExecStart=/bin/virsh start %i +ExecStop=/bin/virsh shutdown %i +ExecStopPost=/bin/sleep 15 +RemainAfterExit=yes +TimeoutStartSec=10s +TimeoutStopSec=40s + +[Install] +WantedBy=cluster-muromachi.target |