X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=plc.d%2Ffunctions;h=e2e128cde8c909fda91231640a78c37d9aa2df25;hb=7e39102e708dec825a4ae919b46b8a5dfa4ea7c3;hp=15318f0075e2df9ddcb5e17d40eb4c254427e828;hpb=e951226571900c068d805fcbe95da3f958555b98;p=myplc.git diff --git a/plc.d/functions b/plc.d/functions index 15318f0..e2e128c 100644 --- a/plc.d/functions +++ b/plc.d/functions @@ -1,12 +1,12 @@ # -*-Shell-script-*- +# $Id$ +# $URL$ # # Common functions for PLC startup/shutdown scripts # # Mark Huang # Copyright (C) 2006 The Trustees of Princeton University # -# $Id: functions,v 1.7 2007/01/19 17:12:45 mlhuang Exp $ -# export PATH=/sbin:/bin:/usr/bin:/usr/sbin @@ -56,7 +56,16 @@ plc_daemon () [ -n "${pid:-}" -a -z "${force:-}" ] && return # And start it up. - (exec -a plc_${base} $*) + # Thierry -- June 18 2007 + # when invoking, e.g. service plc start httpd from an ssh connection + # ssh stupidly hangs when everything is done + # it turns out the forked ssh daemon exhibits the following stack at that point + # (gdb) where + # #0 0x001d6402 in __kernel_vsyscall () + # #1 0x003c2e7d in ___newselect_nocancel () from /lib/libc.so.6 + # #2 0x004387b4 in main () from /usr/sbin/sshd + # So I figured the various file descriptors used were not properly closed + (exec 3>&- 4>&- ; exec -a plc_${base} $*) ret=$? if [ -f /var/run/${base}.pid ] ; then @@ -69,7 +78,7 @@ plc_daemon () # Print IP address of hostname if resolvable gethostbyname () { - perl -MSocket -e '($a,$b,$c,$d,@addrs) = gethostbyname($ARGV[0]); print inet_ntoa($addrs[0]) . "\n";' $1 2>/dev/null + python -c 'import socket; import sys; print socket.gethostbyname(sys.argv[1])' $1 2>/dev/null } # Forcefully make a symlink @@ -102,5 +111,5 @@ upper () # Make copies of stdout and stderr. The plc initscript redirects # stdout and stderr to a logfile if -v is not specified. -[ ! -e /dev/fd/3 ] && exec 3>&1 -[ ! -e /dev/fd/4 ] && exec 4>&2 +[ ! -e /proc/self/fd/3 ] && exec 3>&1 +[ ! -e /proc/self/fd/4 ] && exec 4>&2