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.
So here's my answer then :)
Do:
rc.local
is executed by/bin/sh
not/bin/bash
and this makes the difference.