mirror of
https://github.com/iiab/iiab.git
synced 2025-02-15 04:32:11 +00:00
Merge branch 'ubuntu-changes' of https://github.com/georgejhunt/iiab into ubuntu-changes
This commit is contained in:
commit
c29b4f86ba
2 changed files with 15 additions and 1 deletions
|
@ -57,7 +57,13 @@
|
||||||
- "php{{ php_version }}-curl"
|
- "php{{ php_version }}-curl"
|
||||||
- "php{{ php_version }}-intl"
|
- "php{{ php_version }}-intl"
|
||||||
- "php{{ php_version }}-mcrypt"
|
- "php{{ php_version }}-mcrypt"
|
||||||
when: is_debuntu
|
when: is_debuntu and not is_ubuntu_18
|
||||||
|
|
||||||
|
- name: In Ubuntu 18, php dropped mcrypt
|
||||||
|
package:
|
||||||
|
name: mcrypt
|
||||||
|
state: present
|
||||||
|
when: is_ubuntu_18
|
||||||
|
|
||||||
# we need to install the rpm in order to get the dependencies
|
# we need to install the rpm in order to get the dependencies
|
||||||
# but we only need to do this the first time
|
# but we only need to do this the first time
|
||||||
|
|
|
@ -40,6 +40,14 @@
|
||||||
- nodejs
|
- nodejs
|
||||||
- npm
|
- npm
|
||||||
|
|
||||||
|
- name: Install npm (ubuntu-18)
|
||||||
|
package:
|
||||||
|
name: "{{ item }}"
|
||||||
|
state: present
|
||||||
|
when: internet_available and is_ubuntu_18
|
||||||
|
with_items:
|
||||||
|
- npm
|
||||||
|
|
||||||
# attempting to reinstall npm is broken on Raspbian 9
|
# attempting to reinstall npm is broken on Raspbian 9
|
||||||
- name: Check for Sugarizer already installed
|
- name: Check for Sugarizer already installed
|
||||||
stat:
|
stat:
|
||||||
|
|
Loading…
Reference in a new issue