Skip to content

Commit

Permalink
Always configure all steps first
Browse files Browse the repository at this point in the history
  • Loading branch information
antarcticrainforest committed Mar 13, 2024
1 parent 2b68c69 commit db747e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/freva_deployment/deploy.py
Original file line number Diff line number Diff line change
Expand Up @@ -571,8 +571,8 @@ def create_playbooks(self) -> str:
"""Create the ansible playbook form all steps."""
logger.info("Creating Ansible playbooks")
playbook = []
[getattr(self, f"_prep_{step}")() for step in self.step_order]
for step in self.steps:
getattr(self, f"_prep_{step}")()
playbook_file = (
self.playbooks.get(step)
or self.playbook_dir / f"{step}-server-playbook.yml"
Expand Down

0 comments on commit db747e4

Please sign in to comment.