mirror of
https://github.com/iiab/iiab.git
synced 2025-02-13 11:42:08 +00:00
asterisk.yml, optimze
This commit is contained in:
parent
8b219b65d0
commit
72866c76aa
1 changed files with 6 additions and 11 deletions
|
@ -30,6 +30,7 @@
|
||||||
owner: root
|
owner: root
|
||||||
group: root
|
group: root
|
||||||
extra_opts: [--strip-components=1]
|
extra_opts: [--strip-components=1]
|
||||||
|
creates: "{{ asterisk_src_dir }}/Makefile"
|
||||||
|
|
||||||
- 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"
|
||||||
|
@ -51,11 +52,13 @@
|
||||||
command: "./configure"
|
command: "./configure"
|
||||||
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"
|
||||||
args:
|
args:
|
||||||
chdir: "{{ asterisk_src_dir }}"
|
chdir: "{{ asterisk_src_dir }}"
|
||||||
|
creates: "menuselect.makeopts"
|
||||||
|
|
||||||
- name: Asterisk - Do a bit of menuselect configuration
|
- name: Asterisk - Do a bit of menuselect configuration
|
||||||
command: >
|
command: >
|
||||||
|
@ -70,21 +73,13 @@
|
||||||
command: make
|
command: make
|
||||||
args:
|
args:
|
||||||
chdir: "{{ asterisk_src_dir }}"
|
chdir: "{{ asterisk_src_dir }}"
|
||||||
|
creates: "defaults.h"
|
||||||
|
|
||||||
- name: Asterisk - install
|
- name: Asterisk - install
|
||||||
command: make install
|
command: make install
|
||||||
args:
|
args:
|
||||||
chdir: "{{ asterisk_src_dir }}"
|
chdir: "{{ asterisk_src_dir }}"
|
||||||
|
creates: "/usr/sbin/asterisk"
|
||||||
- name: Asterisk - install config
|
|
||||||
command: make config
|
|
||||||
args:
|
|
||||||
chdir: "{{ asterisk_src_dir }}"
|
|
||||||
|
|
||||||
- name: Asterisk - install samples
|
|
||||||
command: make samples
|
|
||||||
args:
|
|
||||||
chdir: "{{ asterisk_src_dir }}"
|
|
||||||
|
|
||||||
- name: Asterisk - ldconfig
|
- name: Asterisk - ldconfig
|
||||||
command: ldconfig
|
command: ldconfig
|
||||||
|
|
Loading…
Reference in a new issue