Good afternoon everybody !
I would like to know if there is a simple method to update / install all the plugins available at once ??
For the moment, i’m using this bash command line:
for i in {`grafana-cli --pluginsDir "/var/lib/influxdb/grafana/plugins" plugins list-remote | cut -d " " -f 2`}; do grafana-cli --pluginsDir "/var/lib/influxdb/grafana/plugins" plugins install $i; done
However, it reinstalls also plugins that are already up-to-date…
Thanks in advance.
Chris