From 9cb675a60f03366fba5e1337fc593381aba1b902 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,