[PATCH v3 31/36] terraform: Skip localhost when waiting for targets to reboot
Chuck Lever <[email protected]>
| Newsgroups | dev.linux.lists.kdevops |
|---|---|
| Message-ID | <[email protected]> |
From: Chuck Lever <[email protected]> Eliminate this warning: [WARNING]: Reset is not implemented for this connection Reviewed-by: Luis Chamberlain <[email protected]> Signed-off-by: Chuck Lever <[email protected]> --- scripts/terraform.Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/terraform.Makefile b/scripts/terraform.Makefile index 305b287a5e6c..4d738c82120b 100644 --- a/scripts/terraform.Makefile +++ b/scripts/terraform.Makefile @@ -212,7 +212,9 @@ $(KDEVOPS_PROVISIONED_SSH): --inventory localhost, \ playbooks/terraform.yml --tags ssh \ --extra-vars=@./extra_vars.yaml - $(Q)ansible $(ANSIBLE_VERBOSE) -i hosts all -m wait_for_connection + $(Q)ansible $(ANSIBLE_VERBOSE) \ + -i hosts baseline:dev:service \ + -m wait_for_connection $(Q)touch $(KDEVOPS_PROVISIONED_SSH) status_terraform: -- 2.51.0