From 6bc057139d89fbaa5be7401616debc98a86fcbfb Mon Sep 17 00:00:00 2001 From: Nathan Binkert Date: Wed, 12 Oct 2005 13:01:55 -0400 Subject: don't write the pbs jobid here, do it in send.py so we know what it is sooner Don't handle sigstop since you're not allowed to. util/pbs/send.py: write the pbs jobid here in send.py so we know what it is sooner --HG-- extra : convert_revision : 93292d046cb4b628031e0e57e39eb4470b598ed8 --- util/pbs/job.py | 3 --- util/pbs/send.py | 2 ++ 2 files changed, 2 insertions(+), 3 deletions(-) (limited to 'util') diff --git a/util/pbs/job.py b/util/pbs/job.py index e2636c111..fb375cf5d 100755 --- a/util/pbs/job.py +++ b/util/pbs/job.py @@ -168,8 +168,6 @@ if __name__ == '__main__': started = date() jobdir.echofile('.running', started) jobdir.rmfile('.queued') - jobdir.echofile('.pbs_jobid', pbs_jobid) - jobdir.echofile('.pbs_jobname', pbs_jobid) jobdir.echofile('.host', host) jobdir.setstatus('running on %s on %s' % (host, started)) @@ -219,7 +217,6 @@ if __name__ == '__main__': signal.signal(signal.SIGINT, handler) signal.signal(signal.SIGQUIT, handler) signal.signal(signal.SIGTERM, handler) - signal.signal(signal.SIGSTOP, handler) signal.signal(signal.SIGCONT, handler) signal.signal(signal.SIGUSR1, handler) signal.signal(signal.SIGUSR2, handler) diff --git a/util/pbs/send.py b/util/pbs/send.py index c66fb1c05..51eb8425e 100755 --- a/util/pbs/send.py +++ b/util/pbs/send.py @@ -266,6 +266,8 @@ for job in joblist: print 'PBS Jobid: %s' % jobid namehack.setname(jobid, job.name) queued = date() + jobdir.echofile('.pbs_jobid', jobid) + jobdir.echofile('.pbs_jobname', job.name) jobdir.echofile('.queued', queued) jobdir.setstatus('queued on %s' % queued) else: -- cgit v1.2.3