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

[bash] Slurm integration

This commit is contained in:
Hyacinthe Cartiaux 2017-08-24 13:44:16 +02:00
parent 66e875cab0
commit 3e11c30a8d

View file

@ -254,11 +254,16 @@ if [ -f ~/.bash_aliases ]; then
fi
# ----------------------------------------------------------------------
# OAR & G5K support
# HPC clusters support
# ----------------------------------------------------------------------
# Source bash_oar
# OAR integration
if [ -f ~/.bash_oar ]; then
. ~/.bash_oar
fi
# Slurm integration
if [ -f ~/.bash_slurm ]; then
. ~/.bash_slurm
fi