mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
Update main.yml
This commit is contained in:
parent
9d9d130c51
commit
67c7d38459
1 changed files with 6 additions and 20 deletions
|
@ -1,15 +1,10 @@
|
||||||
- name: Install Apache's required packages (debian)
|
- name: Install Apache's required packages (debian)
|
||||||
package:
|
package:
|
||||||
name: "{{ item }}"
|
name: [u'apache2', u'php{{ php_version }}', u'php{{ php_version }}-curl']
|
||||||
state: present
|
state: present
|
||||||
with_items:
|
when: is_debian
|
||||||
- apache2
|
|
||||||
- php{{ php_version }}
|
|
||||||
- php{{ php_version }}-curl
|
|
||||||
#- php{{ php_version }}-sqlite
|
|
||||||
tags:
|
tags:
|
||||||
- download
|
- download
|
||||||
when: is_debian
|
|
||||||
|
|
||||||
- name: Debian changed SQLite name (debian-8)
|
- name: Debian changed SQLite name (debian-8)
|
||||||
package:
|
package:
|
||||||
|
@ -23,14 +18,11 @@
|
||||||
|
|
||||||
- name: Install Apache's required packages (ubuntu)
|
- name: Install Apache's required packages (ubuntu)
|
||||||
package:
|
package:
|
||||||
name: "{{ item }}"
|
name: [u'apache2', u'php']
|
||||||
state: present
|
state: present
|
||||||
with_items:
|
when: is_ubuntu
|
||||||
- apache2
|
|
||||||
- php
|
|
||||||
tags:
|
tags:
|
||||||
- download
|
- download
|
||||||
when: is_ubuntu
|
|
||||||
|
|
||||||
- name: SQLite3 no longer included in another package (ubuntu-18)
|
- name: SQLite3 no longer included in another package (ubuntu-18)
|
||||||
package:
|
package:
|
||||||
|
@ -39,17 +31,11 @@
|
||||||
|
|
||||||
- name: Install Apache's required packages (redhat)
|
- name: Install Apache's required packages (redhat)
|
||||||
package:
|
package:
|
||||||
name: "{{ item }}"
|
name: [u'httpd', u'php', u'php-curl', u'mod_authnz_external']
|
||||||
state: present
|
state: present
|
||||||
with_items:
|
when: is_redhat
|
||||||
- httpd
|
|
||||||
- php
|
|
||||||
- php-curl
|
|
||||||
- mod_authnz_external
|
|
||||||
# - php-sqlite
|
|
||||||
tags:
|
tags:
|
||||||
- download
|
- download
|
||||||
when: is_redhat
|
|
||||||
|
|
||||||
# MOVED DOWN ~58 LINES
|
# MOVED DOWN ~58 LINES
|
||||||
#- name: Remove the default apache2 config file (debuntu)
|
#- name: Remove the default apache2 config file (debuntu)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue