Fix missing json filter to support salt v2019.2pull/185/merge
@@ -4,7 +4,7 @@ | |||
linux_dpdk_pkgs: | |||
pkg.installed: | |||
- pkgs: {{ network.dpdk_pkgs }} | |||
- pkgs: {{ network.dpdk_pkgs | json }} | |||
linux_dpdk_kernel_module: | |||
kmod.present: |
@@ -19,9 +19,9 @@ include: | |||
linux_network_bridge_pkgs: | |||
pkg.installed: | |||
{%- if network.bridge == 'openvswitch' %} | |||
- pkgs: {{ network.ovs_pkgs }} | |||
- pkgs: {{ network.ovs_pkgs | json }} | |||
{%- else %} | |||
- pkgs: {{ network.bridge_pkgs }} | |||
- pkgs: {{ network.bridge_pkgs | json }} | |||
{%- endif %} | |||
{%- endif %} | |||
@@ -375,7 +375,7 @@ linux_system_network: | |||
linux_network_packages: | |||
pkg.installed: | |||
- pkgs: {{ network.pkgs }} | |||
- pkgs: {{ network.pkgs | json }} | |||
/etc/netctl/network_{{ interface.wireless.essid }}: | |||
file.managed: |
@@ -4,7 +4,7 @@ | |||
openvswitch_pkgs: | |||
pkg.installed: | |||
- pkgs: {{ network.ovs_pkgs }} | |||
- pkgs: {{ network.ovs_pkgs | json }} | |||
/etc/default/openvswitch-switch: | |||
file.managed: |
@@ -3,7 +3,7 @@ | |||
linux_lvm_pkgs: | |||
pkg.installed: | |||
- pkgs: {{ storage.lvm_pkgs }} | |||
- pkgs: {{ storage.lvm_pkgs | json }} | |||
/etc/lvm/lvm.conf: |
@@ -27,7 +27,7 @@ xfs_packages_{{ mount.device }}: | |||
{%- if mount.file_system == 'nfs' %} | |||
linux_storage_nfs_packages: | |||
pkg.installed: | |||
- pkgs: {{ storage.nfs.pkgs }} | |||
- pkgs: {{ storage.nfs.pkgs | json }} | |||
{%- endif %} | |||
{{ mount.path }}: |
@@ -3,7 +3,7 @@ | |||
linux_storage_multipath_packages: | |||
pkg.installed: | |||
- pkgs: {{ storage.multipath.pkgs }} | |||
- pkgs: {{ storage.multipath.pkgs | json }} | |||
linux_storage_multipath_config: | |||
file.managed: |
@@ -173,7 +173,7 @@ linux_auth_nsswitch_config_file: | |||
linux_auth_ldap_packages: | |||
pkg.installed: | |||
- pkgs: {{ ldap.pkgs }} | |||
- pkgs: {{ ldap.pkgs | json }} | |||
linux_auth_nslcd_config_file: | |||
file.managed: |
@@ -6,7 +6,7 @@ | |||
{%- if system.autoupdates.pkgs %} | |||
linux_autoupdates_packages: | |||
pkg.installed: | |||
- pkgs: {{ system.autoupdates.pkgs }} | |||
- pkgs: {{ system.autoupdates.pkgs | json }} | |||
{%- endif %} | |||
{%- if grains.os_family == 'Debian' %} |
@@ -51,7 +51,7 @@ linux_extra_package_{{ name }}: | |||
{%- if pkgs %} | |||
linux_extra_packages_{{ pkgs_group }}: | |||
pkg.{{ pkgs_group }}: | |||
- pkgs: {{ pkgs }} | |||
- pkgs: {{ pkgs | json }} | |||
{%- endif %} | |||
{%- endfor %} | |||
@@ -4,7 +4,7 @@ | |||
{% if system.pkgs %} | |||
linux_repo_prereq_pkgs: | |||
pkg.installed: | |||
- pkgs: {{ system.pkgs }} | |||
- pkgs: {{ system.pkgs | json }} | |||
{%- endif %} | |||
# global proxy setup |