From a9539ffb9d5a669649ce6eb423713f7533a740c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christer=20War=C3=A9n?= Date: Thu, 15 Jan 2026 07:15:52 +0200 Subject: [PATCH] Remove operation variable from Manager playbook in Infra command --- src/commands/infra.sh | 4 ++-- wx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/commands/infra.sh b/src/commands/infra.sh index 80cf96e..b39b1ae 100644 --- a/src/commands/infra.sh +++ b/src/commands/infra.sh @@ -68,14 +68,14 @@ wx-infra(){ then if [[ -z ${args['host']} ]] then - host="any" + host="*" else host=${args['host']} fi operation=${args['operation']} wxi-header "Manager" h3 - ansible-playbook $INFRA_VAULT manager.yml --tags $operation --extra-vars "host=$host operation=$operation" + ansible-playbook $INFRA_VAULT manager.yml --tags $operation --extra-vars "host=$host" else wxi-header "Infra" h3 host=${args['host']} diff --git a/wx b/wx index b61dfdb..1cf5342 100755 --- a/wx +++ b/wx @@ -340,14 +340,14 @@ wx-infra(){ then if [[ -z ${args['host']} ]] then - host="any" + host="*" else host=${args['host']} fi operation=${args['operation']} wxi-header "Manager" h3 - ansible-playbook $INFRA_VAULT manager.yml --tags $operation --extra-vars "host=$host operation=$operation" + ansible-playbook $INFRA_VAULT manager.yml --tags $operation --extra-vars "host=$host" else wxi-header "Infra" h3 host=${args['host']}