Skip to content

Commit

Permalink
WIP: testing vos_config collection fix
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
  • Loading branch information
pabelanger committed Aug 12, 2019
1 parent 262d2a6 commit cb0849f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ansible/plugins/action/vyos.py
Expand Up @@ -38,7 +38,7 @@ class ActionModule(ActionNetworkModule):
def run(self, tmp=None, task_vars=None):
del tmp # tmp no longer has any effect

self._config_module = True if self._task.action == 'vyos_config' else False
self._config_module = True if 'vyos_config' in self._task.action else False
socket_path = None

if self._play_context.connection == 'network_cli':
Expand Down

0 comments on commit cb0849f

Please sign in to comment.