Skip to content

Commit

Permalink
Issue 751 : Install gcsfuse on clusters by default (#765)
Browse files Browse the repository at this point in the history
* install gcsfuse
  • Loading branch information
vkumra-broad authored Feb 5, 2019
1 parent 6a6516b commit c69352e
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/main/resources/jupyter/init-actions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -334,4 +334,15 @@ make install
ldconfig
python3 --version

log "Finished installing Python $PYTHON_VERSION"
log "Finished installing Python $PYTHON_VERSION"

log "Starting GCSFuse installation"

export GCSFUSE_REPO=gcsfuse-`lsb_release -c -s`
echo "deb http://packages.cloud.google.com/apt $GCSFUSE_REPO main" | sudo tee /etc/apt/sources.list.d/gcsfuse.list
curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add -

retry 5 betterAptGet
retry 5 apt-get install -y -q gcsfuse
log "GCSFuse Installed"

0 comments on commit c69352e

Please sign in to comment.