{%- from "linux/map.jinja" import network with context %} {%- if network.get('openvswitch', {}).get('enabled', False) %} openvswitch_pkgs: pkg.installed: - pkgs: {{ network.ovs_pkgs }} /etc/default/openvswitch-switch: file.managed: - source: salt://linux/files/openvswitch-switch.default - template: jinja - require: - pkg: openvswitch_pkgs /etc/systemd/system/openvswitch-switch.service: file.managed: - source: salt://linux/files/openvswitch-switch.systemd - template: jinja - require: - pkg: openvswitch_pkgs module.run: - name: service.systemctl_reload - onchanges: - file: /etc/systemd/system/openvswitch-switch.service openvswitch_switch_service: service.running: - name: openvswitch-switch - enable: true {%- if grains.get('noservices') %} - onlyif: /bin/false {%- endif %} - watch: - file: /etc/default/openvswitch-switch {%- endif %}