19 lines
		
	
	
	
		
			397 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			397 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| - name: reboot
 | |
|   reboot:
 | |
|   when: "'handler' not in ansible_skip_tags"
 | |
| 
 | |
| - name: reload interfaces
 | |
|   command: ifreload -a
 | |
|   when: "'handler' not in ansible_skip_tags"
 | |
| 
 | |
| - name: reload nftables
 | |
|   service:
 | |
|     name: nftables
 | |
|     state: reloaded
 | |
|   when: "'handler' not in ansible_skip_tags"
 | |
| 
 | |
| - name: reload sshd
 | |
|   service:
 | |
|     name: sshd
 | |
|     state: reloaded
 | |
|   when: "'handler' not in ansible_skip_tags"
 |