David Dykstra
bc2b4963a0
Support IPv6 addresses with "hosts allow" and "hosts deny". Patch from
...
Hideaki Yoshifuji.
2003-01-09 21:14:10 +00:00
David Dykstra
ee7118a816
Fixed bug that caused rsync to lose exit status of its child processes.
...
Based on patch submited by David R. Staples. Todd Vander Does contributed
the following test which showed the problem:
> mkdir /tmp/nowrite
> chmod -w /tmp/nowrite
> rsync /etc/group /tmp/nowrite || echo $status
mkstemp .group.cUaaeY failed
rsync error: partial transfer (code 23) at main.c(518)
23
> rsync -e ssh loki:/etc/group /tmp/nowrite || echo $status
mkstemp .group.1rayeY failed
> rsync -e ssh loki:/etc/group /tmp/nowrite && echo $status
mkstemp .group.fbaGiY failed
0
The remote copy should have returned non-zero exit code like the local copy.
2003-01-09 19:04:06 +00:00
David Dykstra
1b85e3f1a0
When a file shows up as not existent during an rsync run, always check
...
to see if it excluded before reporting an error. Previously it was only
checking for the exclusion if copy_links was enabled, but the error can
also occur if a file disappears during an rsync run. Suggested by Eugene
V. Chupriyanov and Bo Kersey.
2002-12-11 18:48:27 +00:00
David Dykstra
59c95e4243
Add --link-dest option from J.W. Schultz.
2002-08-29 14:44:55 +00:00
David Dykstra
f8a94f0de8
Patch from J.W. Schultz to have --include-from and --exclude-from on
...
filename "-" read from standard input.
2002-08-29 14:37:20 +00:00
Wayne Davison
93eff16a6a
Document more recent changes.
2002-08-01 17:53:07 +00:00
Wayne Davison
d2d9fe184d
Mention the recent commits.
2002-08-01 16:50:46 +00:00
Wayne Davison
b1a2f37a6e
Mention the popt upgrade.
2002-07-27 18:33:54 +00:00
David Dykstra
759ac87019
Submit enhancement from Michael Zimmerman to allow --suffix to be used
...
with --backup-dir.
2002-05-09 21:44:46 +00:00
Wayne Davison
ccd2b499ed
Mention that --delete-after now implies --delete.
2002-05-06 18:47:57 +00:00
Martin Pool
f49a7b227f
When -e is specified along with an rsyncd url, the client should get a
...
warning but it should not be treated as an error. (Bill Nottingham)
http://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=62489
2002-04-15 07:50:18 +00:00
Martin Pool
bdae761ee1
reformat
2002-04-12 04:22:52 +00:00
Martin Pool
991f90f296
Receiving an @ERROR line from the server is (I think) always fatal, so
...
the client should exit upon receiving one and not be surprised that
the socket closes.
2002-04-11 02:16:34 +00:00
Martin Pool
dd0628f85f
Note code cleanups
2002-04-08 09:09:03 +00:00
Martin Pool
1433e6da69
Patch from Zoong Pham and Albert Chin to improve detection of
...
getaddrinfo on Tru64.
Also configure.in test for mkfifo and sys/un.h, although we don't
actually use that yet.
2002-04-03 06:03:27 +00:00
Martin Pool
6c92af2067
Commit patch based on one from John L. Allen to fix "forward name
...
lookup failed" on AIX 4.3.3.
When doing an name->addr lookup on the client address, there's no
point including the service name, because it can't be spoofed and it
apparently causes trouble when not present in /etc/services.
2002-04-03 02:33:42 +00:00
Martin Pool
54c7298ce4
Roll over version and news.
2002-04-03 02:13:42 +00:00
Martin Pool
ffdb58a51a
Bump to 2.5.5.
2002-04-02 01:41:58 +00:00
Martin Pool
c053133207
If configured with --enable-maintainer-mode, then on receipt of a
...
fatal signal rsync will try to open an xterm running gdb, similarly to
Samba's "panic action" or GNOME's bug-buddy.
2002-03-27 05:10:44 +00:00
Martin Pool
9098bbf3b3
Improved network error handling. (Greg A. Woods)
2002-03-27 01:03:13 +00:00
Martin Pool
d1239eae92
Jos points out that test -L is still broken on Solaris. Now we try up
...
front to detect a command that will work properly, and use that
consistently.
Also, in test report, show setting of $preserve_scratch.
Reset version.
2002-03-26 01:25:47 +00:00
Martin Pool
331050969b
Bump version to 2.5.5rc1.
2002-03-25 23:22:08 +00:00
Martin Pool
b0633744fa
Note about mkdir bug.
2002-03-25 03:56:38 +00:00
Martin Pool
ef86d74736
Clean up text.
2002-03-22 22:36:22 +00:00
Martin Pool
118f39d45b
Clean up text.
2002-03-22 22:33:49 +00:00
Martin Pool
6aaf8d8c10
* Make "make install-strip" works properly, and "make install"
...
accepts a DESTDIR variable for help in building binary packages.
(Peter Breitenlohner)
2002-03-20 05:53:40 +00:00
Martin Pool
4cf64834ed
Patch from Paul Haas:
...
* Fix situation where failure to fork (e.g. because out of process
slots) would cause rsync to kill all processes owned by the
current user. Yes, really! (Paul Haas, Martin Pool)
Also, add a little more documentation and paranoia to make sure we
never call kill(2) with a negative pid.
2002-03-20 01:09:49 +00:00
Martin Pool
1bfbf40bd5
Fix --whole-file problem that caused it to be the default even for
...
remote connections. (Frank Schulz)
<http://lists.samba.org/pipermail/rsync/2002-March/006526.html >
Also, add documentation for whole_file and add assertions that the
value is valid.
2002-03-19 03:21:53 +00:00
Martin Pool
6b2d24de2c
Make sure that freeaddrinfo is called on all code paths leading away
...
from a call to getaddrinfo. (Dave Dykstra)
<20011219085021.A23107@lucent.com >
2002-03-16 09:00:44 +00:00
Martin Pool
142f5be922
Note about --progress patch.
2002-03-16 00:00:43 +00:00
Martin Pool
4c631ac621
Try to handle 'test -L' on Sun.
2002-03-15 01:22:09 +00:00
Martin Pool
daa3d0e2da
"make install-strip" works. (Greg Louis)
2002-03-14 10:38:55 +00:00
Martin Pool
c9a66d41fe
Roll over news file; put in page markers.
2002-03-14 10:33:59 +00:00
Martin Pool
f1abcc7a4c
Bump version to 2.5.4.
2002-03-13 00:03:34 +00:00
Martin Pool
31837783c0
Update NEWS.
2002-03-12 01:22:56 +00:00
Martin Pool
d40fb72395
Get ready for new release.
2002-03-12 01:18:20 +00:00
Martin Pool
a795ab99c7
Set version to 2.5.3.
2002-03-11 05:58:31 +00:00
Martin Pool
9e95e92bdf
Note on zlib patch merge.
2002-03-11 05:52:22 +00:00
Martin Pool
7d81641065
Note about merging zlib 1.1.3.
2002-03-11 03:44:44 +00:00
Martin Pool
e2dd78f744
Add CVE number.
2002-03-11 03:39:49 +00:00
Martin Pool
78818f4465
Add bug # for #132272
2002-02-21 00:26:06 +00:00
Martin Pool
ded8347d6b
Cope with BSD systems on which mkdir() will not accept a trailing
...
slash.
<http://www.opensource.apple.com/bugs/X/BSD%20Kernel/2734739.html >
2002-02-18 22:44:23 +00:00
Martin Pool
c4a5c57dc3
If the daemon is unable to fork a child to accept a connection, print
...
an error message. (Colin Walters)
2002-02-18 22:38:03 +00:00
Martin Pool
befbfe6115
Fix for rsync server processes hanging around after the client
...
unexpectedly disconnects. (Colin Walters) (Debian bug #128632 )
2002-02-18 19:54:00 +00:00
David Dykstra
d52a22e4db
Add item about fixing "out of memory in flist_expand" on Sunos4.
2002-02-14 15:27:55 +00:00
David Dykstra
6dfb45bcdf
Added the two most important bug fixes to NEWS to make sure they're not
...
forgotten for the next release.
2002-02-13 18:57:06 +00:00
Martin Pool
4f092bee9f
Make sure we call setgroups() after setuid(). (Ethan Benson)
2002-02-09 02:18:42 +00:00
David Dykstra
088aac8597
Make batch mode actually work and add man page documentation. From Jos Backus.
2002-02-06 21:20:48 +00:00
David Dykstra
93689aa51a
Add --no-whole-file and --no-blocking-io options
2002-02-05 23:05:31 +00:00
Martin Pool
46e6ad492a
Only print the command used to open connections with -vv, not just -v.
2002-02-05 00:37:53 +00:00