12345678910111213141516171819202122232425262728 |
- ---
- - name: OS Validation
- hosts: localhost
- vars_files:
- - test_vars/test_idrac_vars.yml
- - ../input_params/base_vars.yml
- tasks:
- - name: Copy all provisioned hosts to test_os_inventory
- copy:
- src: "{{ provisioned_hosts_path }}"
- dest: "{{ test_os_inventory_path }}"
- remote_src: yes
- - name: Execute OS validation script
- command: ansible-playbook test_os_validation.yml -i "{{ test_os_inventory_path }}"
|