Browse Source

Parameterize salt identifier with cluster_name - allow to define more clusters than one.

pull/78/head
Martin Horak 6 years ago
parent
commit
2be25c0086
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      salt/control/virt.sls

+ 2
- 2
salt/control/virt.sls View File



{%- if cluster.engine == "virt" %} {%- if cluster.engine == "virt" %}


salt_libvirt_service:
salt_libvirt_service_{{ cluster_name }}:
service.running: service.running:
- name: {{ control.virt_service }} - name: {{ control.virt_service }}
- enable: true - enable: true
{%- endif %} {%- endif %}
- unless: virsh list --all --name| grep -E "^{{ node_name }}.{{ cluster.domain }}$" - unless: virsh list --all --name| grep -E "^{{ node_name }}.{{ cluster.domain }}$"
- require: - require:
- salt_libvirt_service
- salt_libvirt_service_{{ cluster_name }}


{%- if node.get("autostart", True) %} {%- if node.get("autostart", True) %}



Loading…
Cancel
Save