On Fri, 27 Feb 2004, Simon Comeau Martel wrote: >ls -l /usr/bin/recordio >-rwxr-xr-x 1 root root >My run file and my config file are attached.
Your problem is xinetd - it doesn't like recordio being run like this as stderr data is printed to stdout. Use this bash wrapper instead: --8<--- recordio.sh #! /bin/bash exec 2>/tmp/dump exec /usr/bin/recordio $* --8<--- -- Andreas Aardal Hanssen | http://www.andreas.hanssen.name/gpg Author of Binc IMAP | "It is better not to do something http://www.bincimap.org/ | than to do it poorly."
