mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-08 06:12:51 +00:00
[PR #9582/c5cc9494 backport][stable-10] ufw: added support for vrrp protocol (#9595)
ufw: added support for vrrp protocol (#9582)
* ufw: added support for vrrp protocol
* Add changelog fragment for (#9582)
* ufw: Add support for vrrp
Co-authored-by: Felix Fontein <felix@fontein.de>
* ufw: Add support for vrrp
Co-authored-by: Felix Fontein <felix@fontein.de>
* ufw: Add support for vrrp
Co-authored-by: Felix Fontein <felix@fontein.de>
---------
Co-authored-by: Felix Fontein <felix@fontein.de>
(cherry picked from commit c5cc949492)
Co-authored-by: Andrew Bowen <andrewb12505@gmail.com>
This commit is contained in:
2
changelogs/fragments/9582-add-support-for-vrrp.yml
Normal file
2
changelogs/fragments/9582-add-support-for-vrrp.yml
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
minor_changes:
|
||||||
|
- ufw - add support for ``vrrp`` protocol (https://github.com/ansible-collections/community.general/issues/9562, https://github.com/ansible-collections/community.general/pull/9582).
|
||||||
@@ -114,8 +114,9 @@ options:
|
|||||||
proto:
|
proto:
|
||||||
description:
|
description:
|
||||||
- TCP/IP protocol.
|
- TCP/IP protocol.
|
||||||
|
- The value V(vrrp) is supported since community.general 10.3.0.
|
||||||
type: str
|
type: str
|
||||||
choices: [any, tcp, udp, ipv6, esp, ah, gre, igmp]
|
choices: [any, tcp, udp, ipv6, esp, ah, gre, igmp, vrrp]
|
||||||
aliases: [protocol]
|
aliases: [protocol]
|
||||||
name:
|
name:
|
||||||
description:
|
description:
|
||||||
@@ -341,7 +342,7 @@ def main():
|
|||||||
from_port=dict(type='str'),
|
from_port=dict(type='str'),
|
||||||
to_ip=dict(type='str', default='any', aliases=['dest', 'to']),
|
to_ip=dict(type='str', default='any', aliases=['dest', 'to']),
|
||||||
to_port=dict(type='str', aliases=['port']),
|
to_port=dict(type='str', aliases=['port']),
|
||||||
proto=dict(type='str', aliases=['protocol'], choices=['ah', 'any', 'esp', 'ipv6', 'tcp', 'udp', 'gre', 'igmp']),
|
proto=dict(type='str', aliases=['protocol'], choices=['ah', 'any', 'esp', 'ipv6', 'tcp', 'udp', 'gre', 'igmp', 'vrrp']),
|
||||||
name=dict(type='str', aliases=['app']),
|
name=dict(type='str', aliases=['app']),
|
||||||
comment=dict(type='str'),
|
comment=dict(type='str'),
|
||||||
),
|
),
|
||||||
|
|||||||
Reference in New Issue
Block a user