mirror of
				https://github.com/ansible-collections/community.general.git
				synced 2024-09-14 20:13:21 +02:00 
			
		
		
		
	* Remove provider from each task as it is not required. * Add `authorize: yes` whereever required
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			361 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			361 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| ---
 | |
| - debug: msg="START cli/timeout.yaml"
 | |
| 
 | |
| - name: test bad condition
 | |
|   ios_command:
 | |
|     commands:
 | |
|       - show version
 | |
|     authorize: yes
 | |
|     wait_for:
 | |
|       - "result[0] contains bad_value_string"
 | |
|   register: result
 | |
|   ignore_errors: yes
 | |
| 
 | |
| - assert:
 | |
|     that:
 | |
|       - "result.failed == true"
 | |
|       - "result.msg is defined"
 | |
| 
 | |
| - debug: msg="END cli/timeout.yaml"
 |