Warning, /panda-server/templates/sysconfig/panda_jedi.template is written in an unsupported language. File is not indexed.
0001 # Configuration file for the JEDI service launched not through systemd,
0002 # e.g. in container where some parameters are dynamically set via env
0003 # variables while systemd services don't inherit env variables from PID1
0004
0005 @@virtual_env_setup@@
0006
0007 # python
0008 export PATH=/bin:/usr/local/bin:/usr/bin:${PATH}
0009 if [[ -n "${VIRTUAL_ENV}" ]]; then
0010 PATH=${VIRTUAL_ENV}/bin:${VIRTUAL_ENV}/usr/local/bin:${VIRTUAL_ENV}/usr/bin:${VIRTUAL_ENV}:${PATH}
0011 fi
0012
0013 # for Rucio
0014 export X509_CERT_DIR=/etc/grid-security/certificates
0015 export X509_USER_PROXY=/data/atlpan/x509up_u25606
0016 export RUCIO_ACCOUNT=panda
0017 export RUCIO_APPID=pandasrv
0018
0019 # panda home
0020 if [[ -n "${VIRTUAL_ENV}" ]]; then
0021 export PANDA_HOME=${VIRTUAL_ENV}
0022 else
0023 export PANDA_HOME=/data/atlpan
0024 fi
0025
0026 # timezone
0027 export TZ=UTC
0028
0029 # import panda modules
0030 export PYTHONPATH=@@install_purelib@@/pandacommon:@@install_purelib@@/pandaserver:@@install_purelib@@