mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
Asterisk: fix playbook syntax
This commit is contained in:
parent
571e2292b6
commit
5052266947
1 changed files with 11 additions and 11 deletions
|
@ -33,23 +33,23 @@
|
||||||
- name: Asterisk - Download mp3 decoder library into source tree
|
- name: Asterisk - Download mp3 decoder library into source tree
|
||||||
command: "./contrib/scripts/get_mp3_source.sh"
|
command: "./contrib/scripts/get_mp3_source.sh"
|
||||||
args:
|
args:
|
||||||
chdir: {{ asterisk_src_dir }}
|
chdir: "{{ asterisk_src_dir }}"
|
||||||
creates: addons/mp3/mpg123.h
|
creates: "addons/mp3/mpg123.h"
|
||||||
|
|
||||||
- name: Asterisk - Ensure all dependencies are resolved
|
- name: Asterisk - Ensure all dependencies are resolved
|
||||||
shell: export DEBIAN_FRONTEND=noninteractive && ./contrib/scripts/install_prereq install
|
shell: export DEBIAN_FRONTEND=noninteractive && ./contrib/scripts/install_prereq install
|
||||||
args:
|
args:
|
||||||
chdir: {{ asterisk_src_dir }}
|
chdir: "{{ asterisk_src_dir }}"
|
||||||
|
|
||||||
- name: Asterisk - Run the configure script
|
- name: Asterisk - Run the configure script
|
||||||
command: "./configure"
|
command: "./configure"
|
||||||
args:
|
args:
|
||||||
chdir: {{ asterisk_src_dir }}
|
chdir: "{{ asterisk_src_dir }}"
|
||||||
|
|
||||||
- name: Asterisk - Run make menuselect.makeopts
|
- name: Asterisk - Run make menuselect.makeopts
|
||||||
command: "make menuselect.makeopts"
|
command: "make menuselect.makeopts"
|
||||||
args:
|
args:
|
||||||
chdir: {{ asterisk_src_dir }}
|
chdir: "{{ asterisk_src_dir }}"
|
||||||
|
|
||||||
- name: Asterisk - Do a bit of menuselect configuration
|
- name: Asterisk - Do a bit of menuselect configuration
|
||||||
command: >
|
command: >
|
||||||
|
@ -58,32 +58,32 @@
|
||||||
--enable EXTRA-SOUNDS-EN-WAV --enable EXTRA-SOUNDS-EN-G722 --enable EXTRA-SOUNDS-EN-GSM
|
--enable EXTRA-SOUNDS-EN-WAV --enable EXTRA-SOUNDS-EN-G722 --enable EXTRA-SOUNDS-EN-GSM
|
||||||
--disable-category MENUSELECT_MOH
|
--disable-category MENUSELECT_MOH
|
||||||
args:
|
args:
|
||||||
chdir: {{ asterisk_src_dir }}
|
chdir: "{{ asterisk_src_dir }}"
|
||||||
|
|
||||||
- name: Asterisk - Run 'make'
|
- name: Asterisk - Run 'make'
|
||||||
command: make
|
command: make
|
||||||
args:
|
args:
|
||||||
chdir: {{ asterisk_src_dir }}
|
chdir: "{{ asterisk_src_dir }}"
|
||||||
|
|
||||||
- name: Asterisk - install
|
- name: Asterisk - install
|
||||||
command: make install
|
command: make install
|
||||||
args:
|
args:
|
||||||
chdir: {{ asterisk_src_dir }}
|
chdir: "{{ asterisk_src_dir }}"
|
||||||
|
|
||||||
- name: Asterisk - install config
|
- name: Asterisk - install config
|
||||||
command: make config
|
command: make config
|
||||||
args:
|
args:
|
||||||
chdir: {{ asterisk_src_dir }}
|
chdir: "{{ asterisk_src_dir }}"
|
||||||
|
|
||||||
- name: Asterisk - install samples
|
- name: Asterisk - install samples
|
||||||
command: make samples
|
command: make samples
|
||||||
args:
|
args:
|
||||||
chdir: {{ asterisk_src_dir }}
|
chdir: "{{ asterisk_src_dir }}"
|
||||||
|
|
||||||
- name: Asterisk - ldconfig
|
- name: Asterisk - ldconfig
|
||||||
command: ldconfig
|
command: ldconfig
|
||||||
args:
|
args:
|
||||||
chdir: {{ asterisk_src_dir }}
|
chdir: "{{ asterisk_src_dir }}"
|
||||||
|
|
||||||
- name: Asterisk - Create the necessary user/group config and set permissions
|
- name: Asterisk - Create the necessary user/group config and set permissions
|
||||||
command: "{{ item }} chdir={{ asterisk_src_dir }}"
|
command: "{{ item }} chdir={{ asterisk_src_dir }}"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue