1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

Fix chdir spacing in asterisk.yml

This commit is contained in:
Anish Mangal 2019-01-17 07:11:14 +00:00 committed by root
parent f6089d9913
commit 571e2292b6

View file

@ -44,12 +44,12 @@
- name: Asterisk - Run the configure script
command: "./configure"
args:
chdir:{{ asterisk_src_dir }}
chdir: {{ asterisk_src_dir }}
- name: Asterisk - Run make menuselect.makeopts
command: "make menuselect.makeopts"
args:
chdir:{{ asterisk_src_dir }}
chdir: {{ asterisk_src_dir }}
- name: Asterisk - Do a bit of menuselect configuration
command: >
@ -58,32 +58,32 @@
--enable EXTRA-SOUNDS-EN-WAV --enable EXTRA-SOUNDS-EN-G722 --enable EXTRA-SOUNDS-EN-GSM
--disable-category MENUSELECT_MOH
args:
chdir:{{ asterisk_src_dir }}
chdir: {{ asterisk_src_dir }}
- name: Asterisk - Run 'make'
command: make
args:
chdir:{{ asterisk_src_dir }}
chdir: {{ asterisk_src_dir }}
- name: Asterisk - install
command: make install
args:
chdir:{{ asterisk_src_dir }}
chdir: {{ asterisk_src_dir }}
- name: Asterisk - install config
command: make config
args:
chdir:{{ asterisk_src_dir }}
chdir: {{ asterisk_src_dir }}
- name: Asterisk - install samples
command: make samples
args:
chdir:{{ asterisk_src_dir }}
chdir: {{ asterisk_src_dir }}
- name: Asterisk - ldconfig
command: ldconfig
args:
chdir:{{ asterisk_src_dir }}
chdir: {{ asterisk_src_dir }}
- name: Asterisk - Create the necessary user/group config and set permissions
command: "{{ item }} chdir={{ asterisk_src_dir }}"