From 38a4cf4b0821f0d880d8aeb6adf2c8c55af63e20 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Mon, 3 Aug 2009 20:13:17 +0000 Subject: Remove the code from bug #278895 since we're going to need a daemon process in the ebuild's login session in order to pass signals from the controlling terminal to the detached session. A simple fifo-based approach in ebuild.sh does not seem to work since bash's read builtin occasionally loses the fifo data when it's 'Interrupted system call'. Maybe a python script will work better for the session leader/daemon. NOTE: The daemon will also be useful for implementing a fifo-based die helper (to replace the current signal- based approach). svn path=/main/trunk/; revision=13879 --- bin/setsid | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100755 bin/setsid (limited to 'bin/setsid') 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:]) -- cgit v1.2.3-1-g7c22