2020-03-13 14:34:25 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
2020-12-23 15:42:20 +01:00
|
|
|
DEFAULT_RUNDIR=e2e/tmp
|
|
|
|
|
RUNDIR=${RUNDIR:-$DEFAULT_RUNDIR}
|
2020-03-13 14:34:25 +01:00
|
|
|
PIDFILE=$RUNDIR/pid
|
2020-12-23 15:42:20 +01:00
|
|
|
DEFAULT_PACKAGE_FILE=dist/grafana-*linux-amd64.tar.gz
|
2020-03-13 14:34:25 +01:00
|
|
|
PROV_DIR=$RUNDIR/conf/provisioning
|
2020-05-03 13:51:30 +02:00
|
|
|
DEFAULT_HOST=localhost
|
|
|
|
|
DEFAULT_PORT=3001
|
2020-05-12 12:48:26 +02:00
|
|
|
DEFAULT_SUITE=suite1
|