diff options
author | heqnx <root@heqnx.com> | 2025-07-06 14:57:39 +0300 |
---|---|---|
committer | heqnx <root@heqnx.com> | 2025-07-06 14:57:39 +0300 |
commit | a064cbda2086b79b6cc04111cb308a6b2d770aa6 (patch) | |
tree | 9b2c6aa08775aaae76420f9ad8d6baaf728bbe24 /vars | |
parent | 3559ca8a720086f080286e887a29b6fa68810fa9 (diff) | |
download | ansible-icecast2-a064cbda2086b79b6cc04111cb308a6b2d770aa6.tar.gz ansible-icecast2-a064cbda2086b79b6cc04111cb308a6b2d770aa6.zip |
replaced ices2 which only supports vorbis, with liquidsoap + creation of title metadata; reorganized templates
Diffstat (limited to 'vars')
-rw-r--r-- | vars/main.yaml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vars/main.yaml b/vars/main.yaml index 56da4e3..784a675 100644 --- a/vars/main.yaml +++ b/vars/main.yaml @@ -6,6 +6,7 @@ apt_packages: - iptables - icecast2 - ices2 + - liquidsoap - nginx - ufw - unattended-upgrades @@ -13,4 +14,4 @@ apt_packages: - vim fail2ban_jail_dir: /etc/fail2ban/jail.d -random_password: "{{ ((ansible_date_time.epoch | string) ~ inventory_hostname) | hash('sha1sum') | truncate(32, end='') }}" +random_password: "{{ ((ansible_date_time.epoch | string) ~ inventory_hostname) | hash('sha1') | truncate(32, end='') }}" |