mirror of
https://github.com/prometheus/prometheus.git
synced 2024-12-28 15:09:39 -08:00
Merge pull request #295 from prometheus/feature/package/script
Include runner script for packaging.
This commit is contained in:
commit
848b5f7ccc
28
build/package/run_prometheus.sh
Executable file
28
build/package/run_prometheus.sh
Executable file
|
@ -0,0 +1,28 @@
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
# If either of the two tests below fail, you may need to install GNU coreutils
|
||||||
|
# in your environment.
|
||||||
|
|
||||||
|
if [ ! -x "$(which readlink)" ]; then
|
||||||
|
echo "readlink tool cannot be found." > /dev/stderr
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ ! -x "$(which dirname)" ]; then
|
||||||
|
echo "dirname tool cannot be found." > /dev/stderr
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
readonly binary="${0}"
|
||||||
|
readonly binary_path="$(readlink -f ${binary})"
|
||||||
|
readonly binary_directory="$(dirname ${binary_path})"
|
||||||
|
|
||||||
|
if [ -n "${LD_LIBRARY_PATH}" ]; then
|
||||||
|
export LD_LIBRARY_PATH="${binary_directory}/lib:${LD_LIBRARY_PATH}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ -n "${DYLD_LIBRARY_PATH}" ]; then
|
||||||
|
export DYLD_LIBRARY_PATH="${binary_directory}/lib:${DYLD_LIBRARY_PATH}"
|
||||||
|
fi
|
||||||
|
|
||||||
|
"${binary_directory}/prometheus" "${@}" &
|
Loading…
Reference in a new issue