1
0
Fork 0
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:
A Holt 2019-06-23 06:20:49 -04:00 committed by GitHub
parent 5cb024014c
commit f15026b163
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,9 +1,9 @@
- name: Azuracast - Make Azuracast config directory
- name: AzuraCast - Make AzuraCast config directory
file:
path: "{{ azuracast_host_dir }}"
state: directory
- name: Azuracast - Copy over .env template to Azuracast config directory
- name: AzuraCast - Copy over .env template to AzuraCast config directory
template:
src: env.j2
dest: "{{ azuracast_host_dir }}/.env"
@ -11,7 +11,7 @@
group: root
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:
src: docker-compose.override.yml.j2
dest: "{{ azuracast_host_dir }}/docker-compose.override.yml"
@ -19,7 +19,7 @@
group: root
mode: 0644
- name: Azuracast - Download docker.sh script
- name: AzuraCast - Download docker.sh script
get_url:
url: "{{ docker_sh_url }}"
dest: "{{ azuracast_host_dir }}/"
@ -27,26 +27,26 @@
mode: 0755
when: internet_available | bool
- name: Azuracast - Download docker-compose.yml
- name: AzuraCast - Download docker-compose.yml
get_url:
url: "{{ docker_compose_url }}"
dest: "{{ azuracast_host_dir }}/docker-compose.yml"
timeout: "{{ download_timeout }}"
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:
path: "{{ azuracast_host_dir }}/docker.sh"
regexp: "^(.*)read reply.*"
line: "\\1reply='Y'"
backrefs: yes
- name: Azuracast - Make docker container directory
- name: AzuraCast - Make docker container directory
file:
path: "{{ docker_container_dir }}"
state: directory
- name: Azuracast - Link docker container directory
- name: AzuraCast - Link docker container directory
file:
src: "{{ docker_container_dir }}"
dest: "/var/lib/docker"
@ -58,8 +58,7 @@
regexp: "^( *- \\')8([0-9]{3})\\:8([0-9]{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"
args:
chdir: "{{ azuracast_host_dir }}"