mirror of https://github.com/lucascbeyeler/zimbra
				
				
				
			
		
			
				
	
	
		
			21 lines
		
	
	
		
			545 B
		
	
	
	
		
			YAML
		
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			545 B
		
	
	
	
		
			YAML
		
	
	
	
| ---
 | |
| #
 | |
| # Installing dependencies and removing other smtp servers
 | |
| ################################################################################
 | |
| - name: Ensure Sendmail and Postfix is not installed
 | |
|   package:
 | |
|     name: "{{ absent }}"
 | |
|     state: absent
 | |
| 
 | |
| - name: Ensure Pyzor and Razor is installed (CentOS/RedHat)
 | |
|   yum:
 | |
|     name: "{{ centos }}"
 | |
|     state: present
 | |
|   when: ansible_os_family == "RedHat"
 | |
| 
 | |
| - name: Ensure Pyzor and Razor is installed (Ubuntu)
 | |
|   apt:
 | |
|     name: "{{ ubuntu }}"
 | |
|     state: present
 | |
|   when: ansible_os_family == "Debian"
 |