summaryrefslogtreecommitdiff
path: root/livespawn
diff options
context:
space:
mode:
authorV3n3RiX <venerix@rogentos.ro>2016-03-11 19:45:03 +0000
committerV3n3RiX <venerix@rogentos.ro>2016-03-11 19:45:03 +0000
commit2eb24611ef0c2bc838035951e5d27f663a58a820 (patch)
treefe2d29b95fd29ca7b9dc9a44ffd1bfe9b84367ef /livespawn
parent79bfc7769882f42a371b0242248c0339780d1024 (diff)
I really hate to be a developer right now...I have to rewrite this Sabayon inherited crap
Diffstat (limited to 'livespawn')
-rw-r--r--livespawn10
1 files changed, 0 insertions, 10 deletions
diff --git a/livespawn b/livespawn
deleted file mode 100644
index 44d7257..0000000
--- a/livespawn
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/usr/bin/python
-import sys, os, subprocess
-args = sys.argv[1:]
-if not args: raise SystemExit(1)
-
-pid = os.fork()
-if pid == 0:
- p = subprocess.Popen(args)
- rc = p.wait()
- raise SystemExit(rc)