mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
Azuracast -> AzuraCast when in descriptive sentences
This commit is contained in:
parent
5cb024014c
commit
f15026b163
1 changed files with 9 additions and 10 deletions
|
@ -1,9 +1,9 @@
|
||||||
- name: Azuracast - Make Azuracast config directory
|
- name: AzuraCast - Make AzuraCast config directory
|
||||||
file:
|
file:
|
||||||
path: "{{ azuracast_host_dir }}"
|
path: "{{ azuracast_host_dir }}"
|
||||||
state: directory
|
state: directory
|
||||||
|
|
||||||
- name: Azuracast - Copy over .env template to Azuracast config directory
|
- name: AzuraCast - Copy over .env template to AzuraCast config directory
|
||||||
template:
|
template:
|
||||||
src: env.j2
|
src: env.j2
|
||||||
dest: "{{ azuracast_host_dir }}/.env"
|
dest: "{{ azuracast_host_dir }}/.env"
|
||||||
|
@ -11,7 +11,7 @@
|
||||||
group: root
|
group: root
|
||||||
mode: 0644
|
mode: 0644
|
||||||
|
|
||||||
- name: Azuracast - Copy over docker-compose.override.yml template to Azuracast config directory
|
- name: AzuraCast - Copy over docker-compose.override.yml template to AzuraCast config directory
|
||||||
template:
|
template:
|
||||||
src: docker-compose.override.yml.j2
|
src: docker-compose.override.yml.j2
|
||||||
dest: "{{ azuracast_host_dir }}/docker-compose.override.yml"
|
dest: "{{ azuracast_host_dir }}/docker-compose.override.yml"
|
||||||
|
@ -19,7 +19,7 @@
|
||||||
group: root
|
group: root
|
||||||
mode: 0644
|
mode: 0644
|
||||||
|
|
||||||
- name: Azuracast - Download docker.sh script
|
- name: AzuraCast - Download docker.sh script
|
||||||
get_url:
|
get_url:
|
||||||
url: "{{ docker_sh_url }}"
|
url: "{{ docker_sh_url }}"
|
||||||
dest: "{{ azuracast_host_dir }}/"
|
dest: "{{ azuracast_host_dir }}/"
|
||||||
|
@ -27,26 +27,26 @@
|
||||||
mode: 0755
|
mode: 0755
|
||||||
when: internet_available | bool
|
when: internet_available | bool
|
||||||
|
|
||||||
- name: Azuracast - Download docker-compose.yml
|
- name: AzuraCast - Download docker-compose.yml
|
||||||
get_url:
|
get_url:
|
||||||
url: "{{ docker_compose_url }}"
|
url: "{{ docker_compose_url }}"
|
||||||
dest: "{{ azuracast_host_dir }}/docker-compose.yml"
|
dest: "{{ azuracast_host_dir }}/docker-compose.yml"
|
||||||
timeout: "{{ download_timeout }}"
|
timeout: "{{ download_timeout }}"
|
||||||
mode: 0755
|
mode: 0755
|
||||||
|
|
||||||
- name: Azuracast - Make changes to docker.sh script so it runs headless
|
- name: AzuraCast - Make changes to docker.sh script so it runs headless
|
||||||
lineinfile:
|
lineinfile:
|
||||||
path: "{{ azuracast_host_dir }}/docker.sh"
|
path: "{{ azuracast_host_dir }}/docker.sh"
|
||||||
regexp: "^(.*)read reply.*"
|
regexp: "^(.*)read reply.*"
|
||||||
line: "\\1reply='Y'"
|
line: "\\1reply='Y'"
|
||||||
backrefs: yes
|
backrefs: yes
|
||||||
|
|
||||||
- name: Azuracast - Make docker container directory
|
- name: AzuraCast - Make docker container directory
|
||||||
file:
|
file:
|
||||||
path: "{{ docker_container_dir }}"
|
path: "{{ docker_container_dir }}"
|
||||||
state: directory
|
state: directory
|
||||||
|
|
||||||
- name: Azuracast - Link docker container directory
|
- name: AzuraCast - Link docker container directory
|
||||||
file:
|
file:
|
||||||
src: "{{ docker_container_dir }}"
|
src: "{{ docker_container_dir }}"
|
||||||
dest: "/var/lib/docker"
|
dest: "/var/lib/docker"
|
||||||
|
@ -58,8 +58,7 @@
|
||||||
regexp: "^( *- \\')8([0-9]{3})\\:8([0-9]{3}\\'.*)$"
|
regexp: "^( *- \\')8([0-9]{3})\\:8([0-9]{3}\\'.*)$"
|
||||||
replace: "\\g<1>{{ azuracast_port_range_prefix }}\\g<2>:{{ azuracast_port_range_prefix }}\\g<3>"
|
replace: "\\g<1>{{ azuracast_port_range_prefix }}\\g<2>:{{ azuracast_port_range_prefix }}\\g<3>"
|
||||||
|
|
||||||
- name: Azuracast - Run the installer
|
- name: AzuraCast - Run the installer
|
||||||
shell: "/bin/bash docker.sh install"
|
shell: "/bin/bash docker.sh install"
|
||||||
args:
|
args:
|
||||||
chdir: "{{ azuracast_host_dir }}"
|
chdir: "{{ azuracast_host_dir }}"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue