Ubuntu 10.10 rc.local ignores half the command?

2.1k Views Asked by At

I have a java program on autostart in rc.local (in ubuntu its /etc/init.d/rc.local) For some reason in ubuntu on autostart the command to execute java and log its output only half works, while it works as expected in the command line and it also works on any RHEL distro (in rc.local and command line). the command im trying to execute is:

java -server -cp '/foo/bar/' SomeServer &> '/foo/bar/log.txt' &

At boot in ubuntu it just starts the server and rewrites log.txt to a blank log, but doesnt log any more of the output of the server program... All the permissions are definitely set right.. not sure what else to look into.. Any help is appreciated. Thanks.

1

There are 1 best solutions below

0
On BEST ANSWER

So here's my answer then :)

Do:

command > some/logfile.txt 2>&1 &

rc.local is executed by /bin/sh not /bin/bash and this makes the difference.