Skip to content
Snippets Groups Projects
Commit 2f198d64 authored by Antoine Merle's avatar Antoine Merle
Browse files

* Set tcv as default machine.

* Retrieve hostname with unix('hostname -a'), environment variable are too unreliable

git-svn-id: https://spcsvn.epfl.ch/repos/TCV/gdat/trunk@6019 d63d8f72-b253-0410-a779-e742ad2e26cf
parent 538452d8
No related branches found
No related tags found
No related merge requests found
...@@ -78,11 +78,12 @@ if nargin>2 ...@@ -78,11 +78,12 @@ if nargin>2
end end
fusion_machine_defaultname=getenv('FUSION_MACHINE_DEFAULTNAME'); fusion_machine_defaultname=getenv('FUSION_MACHINE_DEFAULTNAME');
default_machine = ''; default_machine = 'tcv';
if ~isempty(fusion_machine_defaultname) if ~isempty(fusion_machine_defaultname)
default_machine = lower(fusion_machine_defaultname); default_machine = lower(fusion_machine_defaultname);
else else
hostname=getenv('HOSTNAME'); [s,hostname]=unix('hostname -a');
if s || isempty(hostname), hostname=getenv('HOSTNAME');end
if ~isempty(regexpi(hostname,'epfl')) if ~isempty(regexpi(hostname,'epfl'))
default_machine = 'tcv'; default_machine = 'tcv';
elseif ~isempty(regexpi(hostname,'rzg.mpg')) elseif ~isempty(regexpi(hostname,'rzg.mpg'))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment