1
0
Fork 0
mirror of https://github.com/hcartiaux/dotfiles.git synced 2024-10-18 09:15:24 +02:00

[bash] Remove G5K environment var from bash_oar

This commit is contained in:
Hyacinthe Cartiaux 2014-02-14 03:51:45 +01:00
parent f8ef8afc0d
commit 77061eb9a8

View file

@ -39,14 +39,3 @@ test -n "$INTERACTIVE" && test -n "$OAR_NODE_FILE" && (
sort $OAR_NODE_FILE | uniq -c | awk '{printf(" %s*%d\n",$2,$1)}END{printf("\n")}' | sed -e 's/,$//'
)
# ----------------------------------------------------------------------
# GRID5000 specific
# ----------------------------------------------------------------------
hostname | grep -e 'grid5000.fr$' >/dev/null 2>&1
if [ $? -eq 0 ] ; then
export OAR_JOB_KEY_FILE=~/.ssh/id_rsa
export HTTP_PROXY=http://proxy:3128
export HTTPS_PROXY=$HTTP_PROXY
fi