"Chandra Kanakpalli" <[EMAIL PROTECTED]> wrote
Monday, April 16, 2001 7:01 PM
> hi,
> I am trying to install rsync on Freebsd machine but after installing i
> am not able to find rsyncd.conf file in /usr/etc can some one help me out.
>
Chandra
you have to create the file.
Gerald
On Mon, 16 Apr 2001, Chandra Kanakpalli wrote:
>hi,
>I am trying to install rsync on Freebsd machine but after installing i
>am not able to find rsyncd.conf file in /usr/etc can some one help me out.
You write one. It has sections that look like this:
[module]
list=yes
path=home/somebody
ho
hi,
I am trying to install rsync on Freebsd machine but after installing i
am not able to find rsyncd.conf file in /usr/etc can some one help me out.
thanks
-chandra
[EMAIL PROTECTED]
On Mon, Apr 16, 2001 at 01:02:49PM -0700, Jumblat, Ghassan wrote:
...
> /usr/sbin/rsync -arvzptgo --delete --exclude *core --exclude *.tar --exclude
> *.err --exclude-from $exclude_file ${
> dir[$i]} ${dest_mach}:${loc_dir[$i]} 2>&1 $logfile
...
> building file list ... link_stat s2004can:/etc : N
This is my simple script
#!/usr/bin/ksh
#Ghassan Jumblat
set -x
typeset loc_dir[0]=/etc
typeset dir[0]=admin
resultfile=/tmp/sync_result
logfile="/tmp/sync_Retail.$$"
exclude_file=/tmp/exclude.txt
dest_mach="s2004can"
mail_to="[EMAIL PROTECTED]"
trap 'rm -rf $logfile; trap 0; exit' 0 1 2 1
Where can I find information on mirroring a complete server.
I want to sync all the relevent files.
I tried rsync / (with -v) and then tried to exclude all the
files that
looked like they should not be synched.
Gerald
On Sat, Apr 14, 2001 at 12:07:46AM +0200, Peter T. Breuer wrote:
...
> Can you point me at how to achieve overwriting instead of going to a
> temporary file? Is it in receiver.c? receive_data()? It seems to rely
> on write_file(). But the fd is already open by the time we get there.
> Can you give