2019-01-18 07:12:34 +00:00
|
|
|
- name: Throw warning if sugarizer_install is true
|
|
|
|
debug: Refusing to install as sugarizer_install is true. Fix that and rerun.
|
|
|
|
when: pbx_install and sugarizer_install
|
|
|
|
|
|
|
|
- name: Throw warning if sugarizer_install is true
|
|
|
|
debug: Refusing to install as nodejs_version is not 10.x. Fix that and rerun.
|
|
|
|
when: pbx_install and (nodejs_version != "10.x")
|
|
|
|
|
2019-01-17 06:47:59 +00:00
|
|
|
#- name: TODO: Check if asterisk and freepbx are already installed
|
|
|
|
|
|
|
|
- name: Install asterisk
|
|
|
|
include_tasks: asterisk.yml
|
2019-01-18 07:12:34 +00:00
|
|
|
when: internet_available and is_ubuntu_18 and pbx_install and (not pbx_installed) and (not sugarizer_install) and (nodejs_version == "10.x")
|
2019-01-17 06:47:59 +00:00
|
|
|
|
|
|
|
- name: Install freepbx
|
|
|
|
include_tasks: freepbx.yml
|
2019-01-18 07:12:34 +00:00
|
|
|
when: internet_available and is_ubuntu_18 and pbx_install and (not pbx_installed) and (not sugarizer_install) and (nodejs_version == "10.x")
|