diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-07-20 15:42:41 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2016-07-20 15:42:41 -0400 |
commit | de413e7ae293f2b919e2e75369c1ecb8a0c83975 (patch) | |
tree | 143ea097ea9e740c48b62335d468e9b0543be7b3 /include/host_config.sh | |
download | astroconda-control-de413e7ae293f2b919e2e75369c1ecb8a0c83975.tar.gz |
Initial commit
Diffstat (limited to 'include/host_config.sh')
-rw-r--r-- | include/host_config.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/include/host_config.sh b/include/host_config.sh new file mode 100644 index 0000000..a97778d --- /dev/null +++ b/include/host_config.sh @@ -0,0 +1,13 @@ +#(DEFAULT) +NEW_HOME=/srv/iraf + +#JWST +if [[ $HOSTNAME == *jwcalibdev* ]]; then + NEW_HOME=/data4/iraf_conda +fi + +#OSX +if [[ `uname -s` == Darwin ]]; then + NEW_HOME=/Users/shared/iraf_conda +fi + |