Skip to content

Commit d774a8f

Browse files
committed
minor fixes to cloud setup scripts
1 parent b93df31 commit d774a8f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Cloud_Setup/jupyter_lab_start.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ tmux send-keys -t jupyterlab ${jlab_start} Enter
2727
# Print info about tmux session
2828
echo -e "${red_start}Started Jupyter lab in tmux session jupyterlab"
2929
echo -e "${red_start}Access from your local machine in a browser window at"
30-
echo -e "${blue_start}http://127.0.0.1:9889/"
30+
echo -e "${blue_start}http://127.0.0.1:9889/ ${red_start}or ${blue_start}http://localhost:9889/"
3131
echo -e "${red_start}tmux session can be accessed with"
3232
echo -e "${blue_start}tmux a -t jupyterlab"
3333
echo -e "${red_start}and detached from current window by pressing keys"

Cloud_Setup/sshd_enable.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ echo '$ ssh -i "~/.ssh/your_key_pair.pem" jpluser@private_ip_address'
6464

6565
# move git repo to ssh user's directory and change ownership (if requested)
6666
read -p 'Move ECCO-v4-Python-Tutorial repo to different user? (Y/[N]) ' move_opt
67-
if [ $move_opt == "Y"] || [ $move_opt == "y" ]; then
67+
if [ $move_opt == "Y" ] || [ $move_opt == "y" ]; then
6868
read -p 'User name of new owner [jpluser for JPL]: ' ssh_user
6969
cd /home
7070
mv ./ssm-user/ECCO-v4-Python-Tutorial ./${ssh_user}/

0 commit comments

Comments
 (0)