diff --git a/update.sh b/update.sh index d49cc5c61..fb8d3306d 100755 --- a/update.sh +++ b/update.sh @@ -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)" diff --git a/util/ansible/roles/redis/tasks/main.yml b/util/ansible/roles/redis/tasks/main.yml index d6e0ca647..f2eba808b 100644 --- a/util/ansible/roles/redis/tasks/main.yml +++ b/util/ansible/roles/redis/tasks/main.yml @@ -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: diff --git a/util/ansible/update.yml b/util/ansible/update.yml index 0adcd2e6d..196643068 100644 --- a/util/ansible/update.yml +++ b/util/ansible/update.yml @@ -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