1
0
Fork 0
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:
A Holt 2019-02-02 19:31:36 -05:00 committed by GitHub
parent d005edad55
commit 7ee64466b2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,4 @@
- name: Install packages python-psycopg2 and php-pgsql (OS's other than debuntu)
- name: "Install packages: python-psycopg2, php-pgsql (OS's other than debuntu)"
package:
name:
- python-psycopg2
@ -20,12 +20,12 @@
state: present
when: is_debuntu
- name: php-zip name (debian-9 or ubuntu)
- name: "Install package: php{{ php_version }}-zip (ubuntu or debian-9+)"
package:
name: "php{{ php_version }}-zip"
when: is_debian_9 or is_ubuntu
when: is_ubuntu or (is_debian and not is_debian_8)
- name: php-zip name for (debian-8)
- name: "Install package: php-pclzip (debian-8)"
package:
name: php-pclzip
when: is_debian_8