summaryrefslogtreecommitdiffstats
path: root/bin/repoman
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2011-01-15 13:22:15 -0800
committerZac Medico <zmedico@gentoo.org>2011-01-16 12:33:20 -0800
commitc8169e703374ab9efa4facd0a06994a85b6f87c2 (patch)
treeb51d7e40fbf7915d046045422009ba1d0e8700ec /bin/repoman
parentb512bca8bf2ef6c1ce57d134653bde909cd986f5 (diff)
downloadportage-c8169e703374ab9efa4facd0a06994a85b6f87c2.tar.gz
portage-c8169e703374ab9efa4facd0a06994a85b6f87c2.tar.bz2
portage-c8169e703374ab9efa4facd0a06994a85b6f87c2.zip
When killed by signal, return 128 + signum.
This is the same convention that bash uses for returncodes of processes that are killed by signals.
Diffstat (limited to 'bin/repoman')
-rwxr-xr-xbin/repoman8
1 files changed, 5 insertions, 3 deletions
diff --git a/bin/repoman b/bin/repoman
index 3938f49cf..dd2b774e8 100755
--- a/bin/repoman
+++ b/bin/repoman
@@ -1,5 +1,5 @@
#!/usr/bin/python -O
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# Next to do: dep syntax checking in mask files
@@ -113,8 +113,10 @@ def err(txt):
def exithandler(signum=None, frame=None):
logging.fatal("Interrupted; exiting...")
- sys.exit(1)
- os.kill(0, signal.SIGKILL)
+ if signum is None:
+ sys.exit(1)
+ else:
+ sys.exit(128 + signum)
signal.signal(signal.SIGINT,exithandler)