From 12d4690e861a4f3a6b2a6eaad278bda2fb19f218 Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Mon, 16 Jan 2023 19:37:51 +0000 Subject: [PATCH] Fix name of Ansible bootstrap trigger var --- bootstrap-daemon/pvcbootstrapd/lib/ansible.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap-daemon/pvcbootstrapd/lib/ansible.py b/bootstrap-daemon/pvcbootstrapd/lib/ansible.py index d8947b4..8361622 100755 --- a/bootstrap-daemon/pvcbootstrapd/lib/ansible.py +++ b/bootstrap-daemon/pvcbootstrapd/lib/ansible.py @@ -67,7 +67,7 @@ def run_bootstrap(config, cspec, cluster, nodes): playbook=f"{config['ansible_path']}/pvc.yml", extravars={ "ansible_ssh_private_key_file": config["ansible_key_file"], - "bootstrap": "yes", + "do_bootstrap": "yes", }, forks=len(nodes), verbosity=2,