Question
· Oct 25, 2019

IRIS and GCP Setup

I'm trying to setup Iris Community on a GCP node and the following fails

iris load https://github.com/intersystems/quickstarts-multimodel-python

Error:

sudo: /tmp/195/load.sh: command not found

 

in /opt/ISC/info.sh

    local directory url
    url=$1
    #get the directory where the bash script lives and add a random numbered new dir
    dir1="/tmp"
    dir2=$(($(od -An -N1 -tu1 /dev/urandom)))
    directory="$dir1/$dir2"
    
    #get the code and set permissions
    sudo git clone -q $url $directory
    sudo chmod -R 775 $directory

    #run the repo specific code
    sudo $directory/load.sh

I don't see a load.sh in the repo, so I'm not sure why it's trying to run it.

I'm wondering if I should git clone it directly in a project directory? 

Thanks! 

https://learning.intersystems.com/course/view.php?id=1050&ssoPass=1
 

Discussion (1)1
Log in or sign up to continue