Skip to content

Commit b5d4e59

Browse files
committed
fix: [#17] include configure-security-updates.yml in static template copy list
The E2E config tests were failing because the new Ansible playbook configure-security-updates.yml was not being copied to the build directory. This adds the playbook to the array of static templates in the AnsibleTemplateRenderer::copy_static_templates method and updates the file count from 5 to 6.
1 parent d2d25d9 commit b5d4e59

File tree

1 file changed

+2
-1
lines changed
  • src/infrastructure/external_tools/ansible/template/renderer

1 file changed

+2
-1
lines changed

src/infrastructure/external_tools/ansible/template/renderer/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,14 +308,15 @@ impl AnsibleTemplateRenderer {
308308
"install-docker.yml",
309309
"install-docker-compose.yml",
310310
"wait-cloud-init.yml",
311+
"configure-security-updates.yml",
311312
] {
312313
self.copy_static_file(template_manager, playbook, destination_dir)
313314
.await?;
314315
}
315316

316317
tracing::debug!(
317318
"Successfully copied {} static template files",
318-
5 // ansible.cfg + 4 playbooks
319+
6 // ansible.cfg + 5 playbooks
319320
);
320321

321322
Ok(())

0 commit comments

Comments
 (0)