mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 19:52:06 +00:00
9 lines
388 B
YAML
9 lines
388 B
YAML
- name: Enable phpMyAdmin via Apache, if phpmyadmin_enabled
|
|
command: a2ensite phpmyadmin.conf
|
|
when: phpmyadmin_enabled | bool
|
|
#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
|