From c766cb2b54e242fd0f5eb686b7871df12f0b7f81 Mon Sep 17 00:00:00 2001 From: Luis Guzman Date: Sat, 4 Jul 2020 04:21:23 -0500 Subject: [PATCH] Avoid single quotes on variable --- grafana.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grafana.sh b/grafana.sh index 1b7356b..f60a858 100644 --- a/grafana.sh +++ b/grafana.sh @@ -102,7 +102,7 @@ curl -X PUT -H "Content-Type: application/json" -d '{ }' http://admin:admin@localhost:3000/api/user/password # Create InfluxDB datasource -curl 'http://admin:$GRAFANA_PASS@localhost:3000/api/datasources' -X \ +curl "http://admin:$GRAFANA_PASS@localhost:3000/api/datasources" -X \ POST -H 'Content-Type: application/json;charset=UTF-8' \ --data-binary \ '{"name":"InfluxDB","type":"influxdb","url":"http://localhost:8086","access":"proxy","isDefault":true,"database":"jitsi"}'