Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions offline/wiab-staging.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading