mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
Debian9 (#91)
* do a special download and install of usbmount * misspelled iiab_download_url * misspell downloads_dir * diable php-sqlite * php version issues * fixes transferred from recognize branch * local_fact moved * remove preload * remove preload * spell ansible * debian9 sqlite3 * package needs name * remove prepped * use apt ratheer than ansible package for npm * monit disable chkconfig * moodle needs php-zip and php-mbstring * debian9 -> debian-9 * returen to os_ver nomenclature for OS.yml
This commit is contained in:
parent
842e617e42
commit
29b0b50885
13 changed files with 70 additions and 55 deletions
|
@ -3,13 +3,21 @@
|
|||
state=present
|
||||
with_items:
|
||||
- apache2
|
||||
- php5
|
||||
- php5-curl
|
||||
- php5-sqlite
|
||||
- php{{ php_version }}
|
||||
- php{{ php_version }}-curl
|
||||
# - php{{ php_version }}-sqlite
|
||||
tags:
|
||||
- download
|
||||
when: is_debian
|
||||
|
||||
- name: Debian changed sqlite name
|
||||
package: name=php{{ php_version }}-sqlite
|
||||
when: is_debian and ansible_distribution_major_version == "8"
|
||||
|
||||
- name: Debian changed sqlite name
|
||||
package: name=php{{ php_version }}-sqlite3
|
||||
when: ansible_local.local_facts.os_ver == "debian-9"
|
||||
|
||||
- name: Install httpd required packages
|
||||
package: name={{ item }}
|
||||
state=present
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue