diff options
author | Chris Dyer <cdyer@cs.cmu.edu> | 2011-03-10 21:46:56 -0500 |
---|---|---|
committer | Chris Dyer <cdyer@cs.cmu.edu> | 2011-03-10 21:46:56 -0500 |
commit | e6b0800c5d03887b610c64d0b9ceb4739dfa5961 (patch) | |
tree | 45bb2d24d79ecba3181a6bd9ab422f44aed6a36f | |
parent | d93815d18783d0cc3d8185f1dc8b96ff3f11b5dd (diff) |
starcluster env tweak
-rw-r--r-- | environment/LocalConfig.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/environment/LocalConfig.pm b/environment/LocalConfig.pm index 62ee2dd3..d136610d 100644 --- a/environment/LocalConfig.pm +++ b/environment/LocalConfig.pm @@ -71,6 +71,7 @@ sub environment_name { sub qsub_args { my $mem = shift @_; die "qsub_args requires a memory amount as a parameter, e.g. 4G" unless $mem; + return 'qsub -V -cwd' if environment_name() eq 'StarCluster'; my $mf = $CONFIG{'QSubMemFlag'} or die "QSubMemFlag not set for $senvironment_name"; my $cmd = "qsub -S /bin/bash ${mf}${mem}"; if ($CONFIG{'QSubQueue'}) { $cmd .= ' ' . $CONFIG{'QSubQueue'}; } |