Skip to content

Commit

Permalink
added 'mas_proxy_call=dict' module definitions otherwise Ansible 2.5 …
Browse files Browse the repository at this point in the history
…fails
  • Loading branch information
Oleksandr Savchenko committed Sep 22, 2018
1 parent 2832686 commit daf532e
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 2 deletions.
4 changes: 4 additions & 0 deletions ansible-modules/netscaler_cs_policy.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,10 @@ def main():
rule=dict(type='str'),
domain=dict(type='str'),
action=dict(type='str'),
mas_proxy_call=dict(
default=False,
type='bool'
),
)

hand_inserted_arguments = dict(
Expand Down
5 changes: 4 additions & 1 deletion ansible-modules/netscaler_lb_monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -883,7 +883,10 @@ def main():
module_specific_arguments = dict(

monitorname=dict(type='str'),

mas_proxy_call=dict(
default=False,
type='bool'
),
type=dict(
type='str',
choices=[
Expand Down
4 changes: 4 additions & 0 deletions ansible-modules/netscaler_lb_vserver.py
Original file line number Diff line number Diff line change
Expand Up @@ -1297,6 +1297,10 @@ def main():

module_specific_arguments = dict(
name=dict(type='str'),
mas_proxy_call=dict(
default=False,
type='bool'
),
servicetype=dict(
type='str',
choices=[
Expand Down
5 changes: 4 additions & 1 deletion ansible-modules/netscaler_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,10 @@ def main():

module_specific_arguments = dict(
name=dict(type='str'),
ipaddress=dict(type='str'),
mas_proxy_call=dict(
default=False,
type='bool'
), ipaddress=dict(type='str'),
domain=dict(type='str'),
translationip=dict(type='str'),
translationmask=dict(type='str'),
Expand Down
4 changes: 4 additions & 0 deletions ansible-modules/netscaler_servicegroup.py
Original file line number Diff line number Diff line change
Expand Up @@ -703,6 +703,10 @@ def main():

module_specific_arguments = dict(
servicegroupname=dict(type='str'),
mas_proxy_call=dict(
default=False,
type='bool'
),
servicetype=dict(
type='str',
choices=[
Expand Down

0 comments on commit daf532e

Please sign in to comment.