From 819374205af3ae702a22d1dc6d0542d25ace05bd Mon Sep 17 00:00:00 2001 From: Harald Pfeiffer Date: Tue, 10 Jul 2018 10:30:24 +0200 Subject: Initial commit, ported from systemd-units.git --- etc/systemd/system/cluster-muromachi.target | 6 ++++++ etc/systemd/system/kvm-clustervm@.service | 25 +++++++++++++++++++++++++ etc/systemd/system/kvm-infravm@.service | 22 ++++++++++++++++++++++ etc/systemd/system/kvm-network@.service | 15 +++++++++++++++ 4 files changed, 68 insertions(+) create mode 100644 etc/systemd/system/cluster-muromachi.target create mode 100644 etc/systemd/system/kvm-clustervm@.service create mode 100644 etc/systemd/system/kvm-infravm@.service create mode 100644 etc/systemd/system/kvm-network@.service (limited to 'etc') diff --git a/etc/systemd/system/cluster-muromachi.target b/etc/systemd/system/cluster-muromachi.target new file mode 100644 index 0000000..ec63edc --- /dev/null +++ b/etc/systemd/system/cluster-muromachi.target @@ -0,0 +1,6 @@ +[Unit] +Description=Cluster "muromachi_cl" +BindsTo=kvm-clustervm@centoscl0.service kvm-clustervm@centoscl1.service kvm-clustervm@centoscl2.service + +[Install] +WantedBy=multi-user.target diff --git a/etc/systemd/system/kvm-clustervm@.service b/etc/systemd/system/kvm-clustervm@.service new file mode 100644 index 0000000..9300f38 --- /dev/null +++ b/etc/systemd/system/kvm-clustervm@.service @@ -0,0 +1,25 @@ +[Unit] +Description=VM %i (with cluster inside) +Requires=kvm-infravm@iscsi.service +After=kvm-infravm@iscsi.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=oneshot +ExecStart=/usr/local/bin/kvmhelper -q vm-start %i +ExecStop=/usr/local/bin/kvmhelper -q vm-stop %i +RemainAfterExit=yes +TimeoutStartSec=10s +TimeoutStopSec=60s + +[Install] +WantedBy=cluster-muromachi.target diff --git a/etc/systemd/system/kvm-infravm@.service b/etc/systemd/system/kvm-infravm@.service new file mode 100644 index 0000000..d07150c --- /dev/null +++ b/etc/systemd/system/kvm-infravm@.service @@ -0,0 +1,22 @@ +[Unit] +Description=Infrastructural VM %i +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 + +[Service] +Type=oneshot +ExecStart=/usr/local/bin/kvmhelper -q vm-start %i +ExecStop=/usr/local/bin/kvmhelper -q vm-stop %i +RemainAfterExit=yes +TimeoutStartSec=10s +TimeoutStopSec=60s + +[Install] +WantedBy=multi-user.target 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 -- cgit v1.2.3