18 lines
		
	
	
		
			458 B
		
	
	
	
		
			YAML
		
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			458 B
		
	
	
	
		
			YAML
		
	
	
	
| ---
 | |
| - name: Simple Connection Test
 | |
|   hosts: pve_cluster
 | |
|   gather_facts: no
 | |
|   tasks:
 | |
|     - name: Test basic connectivity
 | |
|       ping:
 | |
|       register: ping_result
 | |
| 
 | |
|     - name: Show connection status
 | |
|       debug:
 | |
|         msg: "✅ {{ inventory_hostname }} is online and reachable"
 | |
|       when: ping_result is succeeded
 | |
| 
 | |
|     - name: Show connection failure
 | |
|       debug:
 | |
|         msg: "❌ {{ inventory_hostname }} is not reachable"
 | |
|       when: ping_result is failed |