blob: 5aa10d5075ed1b7482021e7e0dee2348ca8ef3fc [file] [log] [blame]
Andy Bavier29682912017-01-24 10:28:58 -05001- name: Check that fabric exists
2 command: ifconfig fabric
3 changed_when: false
4 tags:
5 - skip_ansible_lint # running a sub job
6
7# Needed for CPqD switch
8- name: Turn off TCP checksum offload on fabric interface
9 become: yes
10 command: ethtool -K fabric tx off
11 changed_when: false
12 tags:
13 - skip_ansible_lint # running a sub job
14
15- name: Send ping on fabric, expected to fail b/c fabric not set up
16 command: ping -I fabric -c 3 10.6.1.254
17 ignore_errors: true
18 changed_when: false
19 tags:
20 - skip_ansible_lint # running a sub job