1
0
Fork 0
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:
A Holt 2018-10-28 02:52:13 -04:00 committed by GitHub
parent 4200c9660e
commit a036b6f92a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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: