-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from Enstore-org/enmvr045-config-chooser
Enmvr045 config chooser
- Loading branch information
Showing
2 changed files
with
11 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
EVersion=6.3.4 | ||
ERelease=16 | ||
ECommit=14 | ||
ECommit=16 | ||
export EVersion | ||
export ERelease | ||
export ECommit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -71,6 +71,8 @@ get_logname() | |
[email protected] | ||
if [ `get_logname`x = 'dcache'x ]; then [email protected]; fi | ||
|
||
# TODO(renbauer): maintain this elsewhere or | ||
# check enstore-config instead of duplicating here | ||
case $node in | ||
|
||
stkenscan*) | ||
|
@@ -115,17 +117,22 @@ case $node in | |
ENSTORE_CONFIG_FILE=sam.conf | ||
qualifier=d0en | ||
;; | ||
|
||
gccen*) [email protected],[email protected] | ||
# TODO(renbauer) I think gccen machines are all dmsen hosts now | ||
gccen*) [email protected],[email protected],[email protected] | ||
ENSTORE_CONFIG_HOST=$gccen | ||
ENSTORE_CONFIG_FILE=gccen.conf | ||
complain=0 | ||
;; | ||
dmsen*) [email protected],[email protected] | ||
dmsen*) [email protected],[email protected],[email protected] | ||
ENSTORE_CONFIG_HOST=$dmsen | ||
ENSTORE_CONFIG_FILE=dmsen.conf | ||
complain=0 | ||
;; | ||
enmvr045) [email protected],[email protected],[email protected] | ||
ENSTORE_CONFIG_HOST=$dmsen | ||
ENSTORE_CONFIG_FILE=dmsen.conf | ||
complain=0 | ||
;; | ||
|
||
*) ENSTORE_CONFIG_HOST=$stken | ||
ENSTORE_CONFIG_FILE=stk.conf | ||
|