forked from switnet/quick-jibri-installer
Avoid single quotes on variable
This commit is contained in:
parent
44364927d7
commit
c766cb2b54
|
@ -102,7 +102,7 @@ curl -X PUT -H "Content-Type: application/json" -d '{
|
||||||
}' http://admin:admin@localhost:3000/api/user/password
|
}' http://admin:admin@localhost:3000/api/user/password
|
||||||
|
|
||||||
# Create InfluxDB datasource
|
# 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' \
|
POST -H 'Content-Type: application/json;charset=UTF-8' \
|
||||||
--data-binary \
|
--data-binary \
|
||||||
'{"name":"InfluxDB","type":"influxdb","url":"http://localhost:8086","access":"proxy","isDefault":true,"database":"jitsi"}'
|
'{"name":"InfluxDB","type":"influxdb","url":"http://localhost:8086","access":"proxy","isDefault":true,"database":"jitsi"}'
|
||||||
|
|
Loading…
Reference in New Issue