From 9539ae0dcf965a55983cde76ab84098a85d6af75 Mon Sep 17 00:00:00 2001 From: Arthur Wolf Date: Wed, 29 Apr 2026 17:01:17 +0200 Subject: [PATCH 1/2] Fix command syntax in wiab-staging.md (typo fix) Corrected command syntax errors in the offline deployment verification steps. --- offline/wiab-staging.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/offline/wiab-staging.md b/offline/wiab-staging.md index 52a5b2730..76cdda4b6 100644 --- a/offline/wiab-staging.md +++ b/offline/wiab-staging.md @@ -192,13 +192,13 @@ Before running the offline deployment scripts, verify that the inventory resolve ```bash # confirm the inventory hostnames match the actual VM hostnames -ansible all -i ansible/inventory/offline/inventory.yml -m shell -a 'hostname' +d ansible all -i ansible/inventory/offline/inventory.yml -m shell -a 'hostname' # verify the default IPv4 interface and address reported by Ansible -ansible all -i ansible/inventory/offline/inventory.yml -m setup -a 'filter=ansible_default_ipv4' +d ansible all -i ansible/inventory/offline/inventory.yml -m setup -a 'filter=ansible_default_ipv4' # verify time and timezone consistency across the machines -ansible all -i ansible/inventory/offline/inventory.yml -m shell -a 'date' +d ansible all -i ansible/inventory/offline/inventory.yml -m shell -a 'date' # verify if the MTU is consistent across all the VMs d ansible all -i ansible/inventory/offline/inventory.yml -m shell -a "ip link show | grep mtu" From 75f0fb88e339cb6adf051f701c4698eee0b6973a Mon Sep 17 00:00:00 2001 From: mohitrajain Date: Mon, 1 Jun 2026 22:19:25 +0200 Subject: [PATCH 2/2] fix: WPB-25755 fix commands in wiab-stag documentation --- changelog.d/4-docs/wiab-stag-docs | 1 + 1 file changed, 1 insertion(+) create mode 100644 changelog.d/4-docs/wiab-stag-docs diff --git a/changelog.d/4-docs/wiab-stag-docs b/changelog.d/4-docs/wiab-stag-docs new file mode 100644 index 000000000..534eb2e8c --- /dev/null +++ b/changelog.d/4-docs/wiab-stag-docs @@ -0,0 +1 @@ +Fixed: commands in wiab-stag documentation