mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 11:42:08 +00:00
Update main.yml
This commit is contained in:
parent
a036b6f92a
commit
4799d44d5d
1 changed files with 9 additions and 7 deletions
|
@ -1,6 +1,7 @@
|
|||
- name: Install Apache's required packages (debian)
|
||||
package:
|
||||
#name: [u'apache2', u'php{{ php_version }}', u'php{{ php_version }}-curl']
|
||||
#name: [u'apache2', u'php{{ php_version }}', u'php{{ php_version }}-curl'] # FAILS ('u' for Unicode strings)
|
||||
#name: ['apache2', 'php{{ php_version }}', 'php{{ php_version }}-curl'] # WORKS?
|
||||
name:
|
||||
- apache2
|
||||
- "php{{ php_version }}"
|
||||
|
@ -22,11 +23,11 @@
|
|||
|
||||
- name: Install Apache's required packages (ubuntu)
|
||||
package:
|
||||
#name: [u'apache2', u'php']
|
||||
name: ['apache2', 'php']
|
||||
#name:
|
||||
# - apache2
|
||||
# - php
|
||||
#name: [u'apache2', u'php'] # FAILS ('u' for Unicode strings)
|
||||
#name: ['apache2', 'php'] # WORKS
|
||||
name:
|
||||
- apache2
|
||||
- php
|
||||
state: present
|
||||
when: is_ubuntu
|
||||
tags:
|
||||
|
@ -39,7 +40,8 @@
|
|||
|
||||
- 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'] # FAILS ('u' for Unicode strings)
|
||||
#name: ['httpd', 'php', 'php-curl', 'mod_authnz_external'] # WORKS
|
||||
name:
|
||||
- httpd
|
||||
- php
|
||||
|
|
Loading…
Reference in a new issue