summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwiktor w brodlo <wiktor@brodlo.net>2011-07-21 12:30:03 +0000
committerwiktor w brodlo <wiktor@brodlo.net>2011-07-21 12:30:03 +0000
commita82b4bf062ad8919030f56ea0dfc07eb5d6b9f93 (patch)
treecdb682ee595f761fae0dbe56825f87ae62ce4a8a /app-misc/sabayonlive-tools/files/2.3/livespawn
parentgrub: disable load_video (doesn't work well with Gentoo) (diff)
downloadanaconda-overlay-a82b4bf062ad8919030f56ea0dfc07eb5d6b9f93.tar.gz
anaconda-overlay-a82b4bf062ad8919030f56ea0dfc07eb5d6b9f93.tar.bz2
anaconda-overlay-a82b4bf062ad8919030f56ea0dfc07eb5d6b9f93.zip
Removal of app-misc/sabayonlive-tools (useless)
Diffstat (limited to 'app-misc/sabayonlive-tools/files/2.3/livespawn')
-rw-r--r--app-misc/sabayonlive-tools/files/2.3/livespawn10
1 files changed, 0 insertions, 10 deletions
diff --git a/app-misc/sabayonlive-tools/files/2.3/livespawn b/app-misc/sabayonlive-tools/files/2.3/livespawn
deleted file mode 100644
index 44d7257..0000000
--- a/app-misc/sabayonlive-tools/files/2.3/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)