diff options
| author | Tim Meusel <tim@bastelfreak.de> | 2019-09-12 10:31:25 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-09-12 10:31:25 +0200 |
| commit | 1a417a652142302fdd62534a0d5220c8b7b2304d (patch) | |
| tree | 397bcfd1f98200da896b8d032cbd4b9bcb1a3749 /types/protocols.pp | |
| parent | 6d96e030be0db4a916dd6a9bd0b25570d359e634 (diff) | |
| parent | 3d868fb81532d717fd625638781e4663a834260c (diff) | |
| download | puppet-ferm-1a417a652142302fdd62534a0d5220c8b7b2304d.tar.gz puppet-ferm-1a417a652142302fdd62534a0d5220c8b7b2304d.tar.bz2 | |
Merge pull request #67 from foxxx0/allow-proto-array
allow using an array for $proto
Diffstat (limited to 'types/protocols.pp')
| -rw-r--r-- | types/protocols.pp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/types/protocols.pp b/types/protocols.pp index ee3ac2b..cdd76b2 100644 --- a/types/protocols.pp +++ b/types/protocols.pp @@ -1,2 +1,5 @@ # @summary a list of allowed protocolls to match -type Ferm::Protocols = Enum['icmp', 'tcp', 'udp', 'udplite', 'icmpv6', 'esp', 'ah', 'sctp', 'mh', 'all'] +type Ferm::Protocols = Variant[ + Enum['icmp', 'tcp', 'udp', 'udplite', 'icmpv6', 'esp', 'ah', 'sctp', 'mh', 'all'], + Array[Enum['icmp', 'tcp', 'udp', 'udplite', 'icmpv6', 'esp', 'ah', 'sctp', 'mh', 'all']], +] |
