#5491 -- Change dir creation syntax.

This commit is contained in:
Buster "Silver Eagle" Neece 2022-06-30 18:12:49 -05:00
parent 1e8b45803a
commit 5e31ddce63
No known key found for this signature in database
GPG Key ID: F1D2E64A0005E80E
3 changed files with 6 additions and 4 deletions

View File

@ -34,7 +34,7 @@ else
fi
APP_ENV="${APP_ENV:-production}"
UPDATE_REVISION="${UPDATE_REVISION:-90}"
UPDATE_REVISION="${UPDATE_REVISION:-91}"
echo "Updating AzuraCast (Environment: $APP_ENV, Update revision: $UPDATE_REVISION)"

View File

@ -18,9 +18,11 @@
- name: Create Redis run dir
file:
path: /run/redis/
path: "/run/redis"
owner: "redis"
group: "redis"
state: directory
mode: 0775
- name: Install Redis Supervisord conf
template:

View File

@ -20,7 +20,7 @@
- role: "azuracast-config"
- role: "azuracast-radio"
when: update_revision|int < 91
when: update_revision|int < 92
- role: "supervisord"
@ -31,7 +31,7 @@
when: update_revision|int < 90
- role: "redis"
when: update_revision|int < 87
when: update_revision|int < 91
- role: "beanstalkd"
when: update_revision|int < 87