Update to 2021-06-03 18:00

master
Daniel Berteaud 3 years ago
parent e8fd725d2c
commit c1669f0356
  1. 6
      roles/grafana/tasks/main.yml
  2. 2
      roles/matrix_synapse/defaults/main.yml

@ -87,6 +87,12 @@
notify: restart grafana
tags: grafana
# Since Grafana 7.5.7, grafana-cli even when invoked as root takes action under the grafana user
# so we need to be sure permissions are OK, or plugin update/installation/removal will fail
- name: Ensure correct permissions on data dir
file: path=/var/lib/grafana owner=grafana group=grafana mode=770 recurse=True
tags: grafana
- name: Build a list of installed plugins
shell: grafana-cli plugins ls | perl -ne '/^(\w[\-\w]+)\s\@\s\d+\./ && print "$1\n"'
register: grafana_installed_plugins

@ -1,7 +1,7 @@
---
# Synapse version to deploy
synapse_version: 1.34.0
synapse_version: 1.35.1
# Should ansible handle Synapse upgrades ? If false, only initial install will be done
synapse_manage_upgrade: True

Loading…
Cancel
Save