Ver código fonte

Incoporate the changes suggested by @bechtoldt

Signed-off-by: René Jochum <rene@jochums.at>
pull/9/head
René Jochum 9 anos atrás
pai
commit
05132786d2
2 arquivos alterados com 5 adições e 3 exclusões
  1. +3
    -2
      network/interfaces.sls
  2. +2
    -1
      network/packages.sls

+ 3
- 2
network/interfaces.sls Ver arquivo

@@ -12,9 +12,10 @@
{%- endif -%}
{%- endmacro -%}

{%- if 'dhclient_conf' in salt['pillar.get']('network') %}
{%- if salt['pillar.get']('network:dhclient_conf', False) %}
dhclient_conf:
file.managed:
file:
- managed
- name: /etc/dhcp/dhclient.conf
- mode: 644
- user: root

+ 2
- 1
network/packages.sls Ver arquivo

@@ -2,6 +2,7 @@

{% for action, pkgs in salt['pillar.get']('network:pkgs', {}).iteritems() %}
network_pkgs_{{ action }}:
pkg.{{ action }}:
pkg:
- {{ action }}
- pkgs: {{ pkgs }}
{% endfor %}

Carregando…
Cancelar
Salvar