Displaying 1 result from an estimated 1 matches for "localresource".
Did you mean:
local_resources
2003 Oct 09
4
howto enable ssh on connect to rsync daemon
...used from cron with this content:
#!/bin/ksh
#
LOG=/var/log/rsync.log
export USER=user
export RSYNC_RSH=ssh
export RSYNC_PASSWORD=password
echo $(date) >> $LOG
echo "" >> $LOG
rsync -av --delete node2::resource /path/to/localresource > $LOG 2>&1
echo "**********************************************" >> $LOG
--------------------------------------------------------------------------------------------------------
The script runs fine, but I can see in an iptrace it does'nt use SSH. Instead it con...