Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
jooola committed Jan 7, 2024
1 parent c00bf36 commit d9d475c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
6 changes: 6 additions & 0 deletions molecule/default/converge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,12 @@
name: [git, make, acl] # Is acl only required while testing ?
update_cache: true

- name: Link /usr/bin/sh to /bin/sh
ansible.builtin.file:
src: /bin/sh
dest: /usr/bin/sh
state: link

- name: Include libretime
ansible.builtin.include_role:
name: ansible-role-libretime
2 changes: 1 addition & 1 deletion molecule/default/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@
- name: Ensure that services are started and enabled
ansible.builtin.assert:
that:
- result.ansible_facts.services[item].state == 'stopped'
- result.ansible_facts.services[item].state == 'running'
- result.ansible_facts.services[item].status == 'enabled'
loop: "{{ services }}"
2 changes: 1 addition & 1 deletion tasks/legacy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
mode: "0755"

- name: Deploy legacy files # noqa no-handler
when: libretime_checkout is changed
# when: libretime_checkout is changed
block:
- name: Create temporary directory
ansible.builtin.tempfile:
Expand Down
3 changes: 3 additions & 0 deletions templates/libretime/config.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,9 @@ stream:
- <<: *default_icecast_output
enabled: false
mount: extra
audio:
format: ogg
bitrate: 256

- # Whether the output is enabled.
# > default is false
Expand Down

0 comments on commit d9d475c

Please sign in to comment.