rename network_get network_put modules to net_get net_put (#40381)

This commit is contained in:
Deepak Agrawal
2018-05-18 14:41:47 +05:30
committed by GitHub
parent de2c1dc241
commit 9e3ad96fa9
6 changed files with 16 additions and 16 deletions

View File

@@ -47,7 +47,7 @@ class ActionModule(ActionBase):
if play_context.connection != 'network_cli':
# It is supported only with network_cli
result['failed'] = True
result['msg'] = ('please use network_cli connection type for network_get module')
result['msg'] = ('please use network_cli connection type for net_get module')
return result
try:

View File

@@ -47,7 +47,7 @@ class ActionModule(ActionBase):
if play_context.connection != 'network_cli':
# It is supported only with network_cli
result['failed'] = True
result['msg'] = ('please use network_cli connection type for network_put module')
result['msg'] = ('please use network_cli connection type for net_put module')
return result
src_file_path_name = self._task.args.get('src')