mirror of
				https://gitea.0xace.cc/ansible-galaxy/network.git
				synced 2025-10-31 02:47:24 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			258 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			258 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| ---
 | |
| - name: Reload interface with ifdown ; ifup
 | |
|   shell: |
 | |
|     ifdown {{ item }} ; ifup {{ item }}
 | |
|   loop: "{{ reload_interfaces | unique }}"
 | |
| 
 | |
| - name: Reload interface with nmcli
 | |
|   command: nmcli conn up {{ item }}
 | |
|   loop: "{{ reload_interfaces | unique }}"
 |