mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
9 core roles check their vars + 3 roles record to iiab_state.yml
This commit is contained in:
parent
624fb68596
commit
d87821d266
37 changed files with 737 additions and 416 deletions
9
roles/phpmyadmin/tasks/enable-or-disable.yml
Normal file
9
roles/phpmyadmin/tasks/enable-or-disable.yml
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
- 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue