mirror of
https://github.com/iiab/iiab.git
synced 2025-02-14 20:22:08 +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 }}-intl"
|
||||
- "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
|
||||
# but we only need to do this the first time
|
||||
|
|
|
@ -40,6 +40,14 @@
|
|||
- nodejs
|
||||
- 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
|
||||
- name: Check for Sugarizer already installed
|
||||
stat:
|
||||
|
|
Loading…
Reference in a new issue