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:
parent
f6089d9913
commit
571e2292b6
1 changed files with 8 additions and 8 deletions
|
@ -44,12 +44,12 @@
|
||||||
- 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