summaryrefslogtreecommitdiffstats
path: root/bin/setsid
diff options
context:
space:
mode:
Diffstat (limited to 'bin/setsid')
-rwxr-xr-xbin/setsid10
1 files changed, 0 insertions, 10 deletions
diff --git a/bin/setsid b/bin/setsid
deleted file mode 100755
index 1be1e55c2..000000000
--- a/bin/setsid
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/usr/bin/python -O
-# Copyright 2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-import os
-import sys
-
-os.setsid()
-os.execl(sys.argv[1], *sys.argv[1:])