Mike,
It looks like you have your autoresume setup wrong, look at the end of the call, it should be:
1> /dev/null
You have:
> /dev/null 2> /dev/null
You're missing the "1" and just have ">", I'm not sure if that will affect it, but it could. This is telling the call to pipe the standard output 1 to /dev/null (basically disappear).
There's a way you can test it. Shell in to your host, using SSH/PuTTY, and then run the command, but without the >1 /dev/null 2> /dev/nul and see what output you get, you should see that it runs, or if not an error.
If you see an error post it here, someone will know what it means. If you don't see an error, it's likely that the missing '>' as mentioned above is the problem.
Good luck...