Skip to content
Snippets Groups Projects
Commit 4ee1ef00 authored by Mikhail Karnevskiy's avatar Mikhail Karnevskiy
Browse files

refactor activate script

parent faabaf37
No related branches found
No related tags found
1 merge request!226Feat: update installation
source /etc/profile.d/modules.sh source /etc/profile.d/modules.sh
module load anaconda/3 module load anaconda/3
module load texlive module load texlive
export PATH=/home/${USER}/.local/bin:$PATH # export path to python environment
export PATH=$HOME/.local/bin:$PATH
...@@ -6,7 +6,7 @@ python_path=$2 ...@@ -6,7 +6,7 @@ python_path=$2
ipython_path=$3 ipython_path=$3
jupyter_path=$4 jupyter_path=$4
ipcluster_path="${5}" ipcluster_path="${5}"
krb_activate_path=$6 activate_path=$6
uuid=$7 uuid=$7
notebook=$8 notebook=$8
detector=$9 detector=$9
...@@ -21,7 +21,7 @@ echo "Python path: $python_path" ...@@ -21,7 +21,7 @@ echo "Python path: $python_path"
echo "IPython path: $ipython_path" echo "IPython path: $ipython_path"
echo "Jupyter path: $jupyter_path" echo "Jupyter path: $jupyter_path"
echo "IP-Cluster path: $ipcluster_path" echo "IP-Cluster path: $ipcluster_path"
echo "Karabo activate: $krb_activate_path" echo "Environment activate: $activate_path"
echo "IP-Cluster profile: $uuid" echo "IP-Cluster profile: $uuid"
echo "notebook: $notebook" echo "notebook: $notebook"
echo "detector: $detector" echo "detector: $detector"
...@@ -34,15 +34,7 @@ echo "job ID: $SLURM_JOB_ID" ...@@ -34,15 +34,7 @@ echo "job ID: $SLURM_JOB_ID"
export CAL_NOTEBOOK_NAME=$notebook export CAL_NOTEBOOK_NAME=$notebook
# set-up enviroment # set-up enviroment
if [ "${krb_activate_path}" != "NO_KRB_ACTIVATE" ] source ${activate_path}
then
source ${krb_activate_path}
else
source /etc/profile.d/modules.sh
module load anaconda/3
module load texlive
export PATH=/home/${USER}/.local/bin:$PATH
fi
echo "Starting influx feeder" echo "Starting influx feeder"
./cal_influx_feeder.sh $notebook $detector $caltype > /dev/null 2>&1 & ./cal_influx_feeder.sh $notebook $detector $caltype > /dev/null 2>&1 &
......
...@@ -641,8 +641,8 @@ def concurrent_run(temp_path, nb, nbname, args, cparm=None, cval=None, ...@@ -641,8 +641,8 @@ def concurrent_run(temp_path, nb, nbname, args, cparm=None, cval=None,
ipython_path, # path to ipython ipython_path, # path to ipython
jupyter_path, # path to jupyter jupyter_path, # path to jupyter
ipcluster_path, # path to ipcluster ipcluster_path, # path to ipcluster
# karabo activate path # python activate path
karabo_activate_path if karabo_activate_path else "NO_KRB_ACTIVATE", activate_path if activate_path!="" else "{}/bin/activate.sh".format(os.path.dirname(__file__)),
args.get("cluster_profile", "NO_CLUSTER"), args.get("cluster_profile", "NO_CLUSTER"),
'"{}"'.format(base_name.upper()), '"{}"'.format(base_name.upper()),
'"{}"'.format(args["detector"].upper()), '"{}"'.format(args["detector"].upper()),
......
...@@ -12,8 +12,8 @@ ipython_path = "ipython" ...@@ -12,8 +12,8 @@ ipython_path = "ipython"
# Path to use for calling Jupyter. If the environment is correctly set, simply the command # Path to use for calling Jupyter. If the environment is correctly set, simply the command
jupyter_path = "jupyter" jupyter_path = "jupyter"
# Path to find the Karabo activate script at, set to an empty string if not running in a Karabo environemnt # Path to find activate script
karabo_activate_path = "" activate_path = ""
# Path to use for calling ipcluster. If the environment is correctly set, simply the command # Path to use for calling ipcluster. If the environment is correctly set, simply the command
ipcluster_path = "ipcluster" ipcluster_path = "ipcluster"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment