1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/grafana_ynh.git synced 2024-09-03 20:36:29 +02:00

Use portable format and restore all databases

This commit is contained in:
BrunoSpy 2023-04-17 12:24:26 +02:00 committed by GitHub
parent 435ee20a40
commit 1157a237d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -93,10 +93,7 @@ ynh_script_progression --message="Restoring the InfluxDB database..." --weight=1
# That happens when passing automated tests (NetData not present) # That happens when passing automated tests (NetData not present)
ynh_systemd_action --service_name=influxdb --action="stop" ynh_systemd_action --service_name=influxdb --action="stop"
if [ "$(ls -A ./influxdb_data)" ] ; then if [ "$(ls -A ./influxdb_data)" ] ; then
influxd restore -metadir /var/lib/influxdb/meta ./influxdb_data influxd restore -portable ./influxdb_data
if [ "$(ls -A ./influxdb_data/opentsdb*)" ] ; then
influxd restore -database opentsdb -datadir /var/lib/influxdb/data ./influxdb_data
fi
fi fi
#================================================= #=================================================