Procházet zdrojové kódy

Adding comment option to iptables rule

Change-Id: I9d93052cfc197a364b42240448344d5543e8805f
master
Dmitry Stremkouski před 7 roky
rodič
revize
afb406c73f
3 změnil soubory, kde provedl 5 přidání a 1 odebrání
  1. +1
    -0
      README.rst
  2. +3
    -0
      iptables/_rule.sls
  3. +1
    -1
      tests/pillar/iptables_server.sls

+ 1
- 0
README.rst Zobrazit soubor

@@ -88,6 +88,7 @@ Allow access from local network
destination_port: 22
source_network: 192.168.1.0/24
jump: ACCEPT
comment: Blah

IPv6 is supported as well


+ 3
- 0
iptables/_rule.sls Zobrazit soubor

@@ -20,6 +20,9 @@ iptables_{{ chain_name }}_{{ rule_name }}:
{%- if rule.match is defined %}
- match: {{ rule.match }}
{%- endif %}
{%- if rule.comment is defined %}
- comment: {{ rule.comment }}
{%- endif %}
{%- if rule.connection_state is defined %}
- connstate: {{ rule.connection_state }}
{%- endif %}

+ 1
- 1
tests/pillar/iptables_server.sls Zobrazit soubor

@@ -10,4 +10,4 @@ iptables:
destination_port: 8088
source_network: 127.0.0.1
jump: ACCEPT
comment: Blah

Načítá se…
Zrušit
Uložit