summaryrefslogtreecommitdiff
path: root/util/pbs/pbs.py
diff options
context:
space:
mode:
authorNathan Binkert <binkertn@umich.edu>2005-11-02 12:19:08 -0500
committerNathan Binkert <binkertn@umich.edu>2005-11-02 12:19:08 -0500
commita0829a7780b110a912ffc250d424b6dfe3586e62 (patch)
tree2680320da464099721f20b87ecee010ed3e9bebf /util/pbs/pbs.py
parent51ac634b2d5bc4ae77c5f420606f57e21d6808c8 (diff)
downloadgem5-a0829a7780b110a912ffc250d424b6dfe3586e62.tar.xz
Simple updates to pbs and send.py
util/pbs/pbs.py: Change the default so that we do not get mail under any circumstances from pbs. util/pbs/send.py: Add a -n flag to send.py that causes the Base directory to *not* sync with the Link directory --HG-- extra : convert_revision : 6e872153b6b2c34b61ec2ddbf3e5536876f4b43b
Diffstat (limited to 'util/pbs/pbs.py')
-rwxr-xr-xutil/pbs/pbs.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/util/pbs/pbs.py b/util/pbs/pbs.py
index 70a0c6bed..21c2cb89d 100755
--- a/util/pbs/pbs.py
+++ b/util/pbs/pbs.py
@@ -147,6 +147,8 @@ class qsub:
flags.append('e')
if len(flags):
self.cmd.append('-m ' + flags)
+ else:
+ self.cmd.append('-mn')
if self.name:
self.cmd.append("-N%s" % self.name)