Explorar el Código

Allow to edit the dhclient_conf via the interfaces state.

pull/9/head
René Jochum hace 9 años
padre
commit
b1daeff7a5
Se han modificado 1 ficheros con 11 adiciones y 1 borrados
  1. +11
    -1
      network/interfaces.sls

+ 11
- 1
network/interfaces.sls Ver fichero

@@ -12,7 +12,17 @@
{%- endif -%}
{%- endmacro -%}

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

{%- if salt['pillar.get']('network:interfaces', False) %}
{% set interfaces = interfaces + salt['pillar.get']('network:interfaces') %}
{% endif %}


Cargando…
Cancelar
Guardar