There is an Ant script which is rsync-ing data to a remote server via an exec statement, however I don't see any method for authentication to the remote server. The script runs as root (OS is Mac OS X), but when I try to SSH to the remote server as Root I get prompted for a password. How do I track down where/how the authentication is happening?
<exec dir="/usr/bin/" executable="rsync">
<arg value="-av" />
<arg value="${bluealphaout}" />
<arg value="Remote_Server::Some_Folder/by_name/" />
</exec>