During the Linux Agent install using the rhel-5.0-x64 package, the following crontab entry is created...
* * * * * /bin/sh /etc/init.d/swiagentd swrestart > /dev/null 2&>1
I believe the intent was to ultimately redirect stderr to /dev/null, which would be 2>&1, what the command is currently doing is piping the output into a file called 1 in roots home directory.
Anyone else run into this?