mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
do not risk error on earlier version of ubuntu
This commit is contained in:
parent
f4c363b874
commit
1fc716581d
2 changed files with 7 additions and 3 deletions
|
@ -3,5 +3,5 @@
|
||||||
|
|
||||||
[defaults]
|
[defaults]
|
||||||
squash_actions = apk, apt, dnf, homebrew, openbsd_pkg, pacman, pkgng, yum, zypper, package
|
squash_actions = apk, apt, dnf, homebrew, openbsd_pkg, pacman, pkgng, yum, zypper, package
|
||||||
remote_tmp = $HOME/.ansible/tmp
|
remote_tmp = /tmp/.ansible/tmp
|
||||||
local_tmp = $HOME/.ansible/tmp
|
local_tmp = /tmp/.ansible/tmp
|
||||||
|
|
|
@ -27,11 +27,15 @@
|
||||||
with_items:
|
with_items:
|
||||||
- apache2
|
- apache2
|
||||||
- php
|
- php
|
||||||
- php{{ php_version }}-sqlite3
|
|
||||||
tags:
|
tags:
|
||||||
- download
|
- download
|
||||||
when: is_ubuntu
|
when: is_ubuntu
|
||||||
|
|
||||||
|
- name: Sqlite3 no longer included in another package in ubuntu18
|
||||||
|
package:
|
||||||
|
name: php{{ php_version }}-sqlite3
|
||||||
|
when: is_ubunbu_18
|
||||||
|
|
||||||
- name: Install httpd required packages (redhat)
|
- name: Install httpd required packages (redhat)
|
||||||
package:
|
package:
|
||||||
name: "{{ item }}"
|
name: "{{ item }}"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue