From 991b865cb633ba5a903978016894d53b9df80e7d Mon Sep 17 00:00:00 2001 From: Ajay Chenampara Date: Fri, 13 Sep 2019 01:34:36 -0400 Subject: [PATCH] Update junos_config.py (#62221) Add the commands alias to match UX of IOS, EOS etc. --- lib/ansible/modules/network/junos/junos_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/network/junos/junos_config.py b/lib/ansible/modules/network/junos/junos_config.py index f6b353af6cd..fc7ba9064d8 100644 --- a/lib/ansible/modules/network/junos/junos_config.py +++ b/lib/ansible/modules/network/junos/junos_config.py @@ -371,7 +371,7 @@ def main(): dir_path=dict(type='path') ) argument_spec = dict( - lines=dict(type='list'), + lines=dict(aliases=['commands'], type='list'), src=dict(type='path'), src_format=dict(choices=['xml', 'text', 'set', 'json']),