Re: Python application in rc.d.

2004-06-20 Thread Chuck Swiger
Lewis Thompson wrote: I'm trying to create a port for a Python application that I want to start from local/etc/rc.d. The command is this: /usr/bin/su freevo -c /usr/local/bin/freevo -fs start /dev/null 21 Unfortunately when I boot up I get a message about Python not being configured/available

Re: Python application in rc.d.

2004-06-20 Thread Lewis Thompson
On Sun, Jun 20, 2004 at 03:01:54PM -0400, Chuck Swiger wrote: Lewis Thompson wrote: I'm trying to create a port for a Python application that I want to start from local/etc/rc.d. The command is this: /usr/bin/su freevo -c /usr/local/bin/freevo -fs start /dev/null 21 Unfortunately when

Re: Python application in rc.d.

2004-06-20 Thread Chuck Swiger
Lewis Thompson wrote: [ ... ] Does the script set $PATH to include the location where python is? If you don't list /usr/local/bin explicitly, this may be the problem... No, PATH doesn't get set but if I run it as /usr/local/bin/freevo.sh start from a login shell (i.e. after the system has

Re: Python application in rc.d.

2004-06-20 Thread Bill Moran
Lewis Thompson [EMAIL PROTECTED] wrote: On Sun, Jun 20, 2004 at 03:01:54PM -0400, Chuck Swiger wrote: Lewis Thompson wrote: I'm trying to create a port for a Python application that I want to start from local/etc/rc.d. The command is this: /usr/bin/su freevo -c /usr/local/bin/freevo

Re: Python application in rc.d.

2004-06-20 Thread Lewis Thompson
On Sun, Jun 20, 2004 at 03:56:43PM -0400, Chuck Swiger wrote: Lewis Thompson wrote: [ ... ] Does the script set $PATH to include the location where python is? If you don't list /usr/local/bin explicitly, this may be the problem... No, PATH doesn't get set but if I run it as