mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
Add support for debian 9.7
This commit is contained in:
parent
425df6b4f0
commit
7b25c9958a
2 changed files with 3 additions and 4 deletions
|
@ -49,10 +49,9 @@
|
||||||
chdir: "{{ asterisk_src_dir }}"
|
chdir: "{{ asterisk_src_dir }}"
|
||||||
|
|
||||||
- name: Asterisk - Run the configure script
|
- name: Asterisk - Run the configure script
|
||||||
command: "./configure"
|
command: "./configure --with-jansson-bundled"
|
||||||
args:
|
args:
|
||||||
chdir: "{{ asterisk_src_dir }}"
|
chdir: "{{ asterisk_src_dir }}"
|
||||||
creates: "config.log"
|
|
||||||
|
|
||||||
- name: Asterisk - Run make menuselect.makeopts
|
- name: Asterisk - Run make menuselect.makeopts
|
||||||
command: "make menuselect.makeopts"
|
command: "make menuselect.makeopts"
|
||||||
|
|
|
@ -7,8 +7,8 @@
|
||||||
|
|
||||||
- name: Install asterisk
|
- name: Install asterisk
|
||||||
include_tasks: asterisk.yml
|
include_tasks: asterisk.yml
|
||||||
when: internet_available and is_ubuntu_18 and pbx_install and (not pbx_installed) and (not sugarizer_install) and (nodejs_version == "10.x")
|
when: internet_available and ((is_debian and ansible_distribution_major_version == "9") or is_ubuntu_18) and pbx_install and (not pbx_installed) and (nodejs_version == "10.x")
|
||||||
|
|
||||||
- name: Install freepbx
|
- name: Install freepbx
|
||||||
include_tasks: freepbx.yml
|
include_tasks: freepbx.yml
|
||||||
when: internet_available and is_ubuntu_18 and pbx_install and (not pbx_installed) and (not sugarizer_install) and (nodejs_version == "10.x")
|
when: internet_available and ((is_debian and ansible_distribution_major_version == "9") or is_ubuntu_18) and pbx_install and (not pbx_installed) and (nodejs_version == "10.x")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue