mirror of
https://github.com/saymrwulf/pulp-runtime.git
synced 2026-05-21 21:52:31 +00:00
17 lines
328 B
Bash
17 lines
328 B
Bash
|
|
#!/bin/bash -e
|
||
|
|
|
||
|
|
export PULPRT_TARGET=pulp_cluster
|
||
|
|
export PULPRUN_TARGET=pulp_cluster
|
||
|
|
export CONFIG_NO_FC=1
|
||
|
|
|
||
|
|
if [ -n "${ZSH_VERSION:-}" ]; then
|
||
|
|
DIR="$(readlink -f -- "${(%):-%x}")"
|
||
|
|
scriptDir="$(dirname $DIR)"
|
||
|
|
else
|
||
|
|
|
||
|
|
scriptDir="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")"
|
||
|
|
|
||
|
|
fi
|
||
|
|
|
||
|
|
source $scriptDir/common.sh
|