Skip to content

Commit

Permalink
Fix side_effect arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
Qalthos committed Jan 8, 2025
1 parent 3dbfe50 commit b273399
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/molecule/provisioner/ansible.py
Original file line number Diff line number Diff line change
Expand Up @@ -827,7 +827,8 @@ def side_effect(self, action_args: list[str] | None = None) -> None:
playbooks = [
self._get_ansible_playbook(self.abs_path(playbook)) for playbook in action_args
]
playbooks = [self._get_ansible_playbook(self.playbooks.side_effect)]
else:
playbooks = [self._get_ansible_playbook(self.playbooks.side_effect)]
for pb in playbooks:
pb.execute()

Expand Down

0 comments on commit b273399

Please sign in to comment.