mirror of
				https://github.com/iiab/iiab.git
				synced 2025-03-09 15:40:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			381 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			381 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
| - name: Enable phpMyAdmin via Apache, if phpmyadmin_enabled
 | |
|   command: a2ensite phpmyadmin.conf
 | |
|   when: phpmyadmin_enabled
 | |
|   #when: apache_installed is defined and phpmyadmin_enabled
 | |
| 
 | |
| - name: Disable phpMyAdmin via Apache, if not phpmyadmin_enabled
 | |
|   command: a2dissite phpmyadmin.conf
 | |
|   when: not phpmyadmin_enabled
 | |
|   #when: apache_installed is defined and not phpmyadmin_enabled
 |