mirror of
https://github.com/iiab/iiab.git
synced 2025-02-15 04:32:11 +00:00
Update main.yml
This commit is contained in:
parent
4200c9660e
commit
a036b6f92a
1 changed files with 11 additions and 2 deletions
|
@ -22,7 +22,11 @@
|
|||
|
||||
- name: Install Apache's required packages (ubuntu)
|
||||
package:
|
||||
name: [u'apache2', u'php']
|
||||
#name: [u'apache2', u'php']
|
||||
name: ['apache2', 'php']
|
||||
#name:
|
||||
# - apache2
|
||||
# - php
|
||||
state: present
|
||||
when: is_ubuntu
|
||||
tags:
|
||||
|
@ -35,7 +39,12 @@
|
|||
|
||||
- name: Install Apache's required packages (redhat)
|
||||
package:
|
||||
name: [u'httpd', u'php', u'php-curl', u'mod_authnz_external']
|
||||
#name: [u'httpd', u'php', u'php-curl', u'mod_authnz_external']
|
||||
name:
|
||||
- httpd
|
||||
- php
|
||||
- php-curl
|
||||
- mod_authnz_external
|
||||
state: present
|
||||
when: is_redhat
|
||||
tags:
|
||||
|
|
Loading…
Reference in a new issue