cvsdist 20e6c5
%define	_sbindir /sbin
cvsdist 20e6c5
# XXX --enable-kerberos		needs krcmd
cvsdist d6e33c
%define	myoptions --enable-largefile --with-binmode=6755 --with-manowner=root --with-mangrp=root --with-manmode=0644 --with-dumpdates="%{_sysconfdir}/dumpdates" --enable-readline
cvsdist 20e6c5
cvsdist 63520a
Summary: Programs for backing up and restoring ext2/ext3 filesystems.
cvsdist 20e6c5
Name: dump
Jindrich Novy 4eff11
Version: 0.4b40
Jindrich Novy d992bd
Release: 2
cvsdist dcc982
License: BSD
cvsdist 20e6c5
Group: Applications/Archiving
cvsdist af103c
URL: http://dump.sourceforge.net
Jindrich Novy a64694
Source: dump-%{version}.tar.bz2
cvsdist c0bb34
BuildRoot: %{_tmppath}/%{name}-root
cvsdist 8e9842
BuildRequires: e2fsprogs-devel >= 1.18, readline-devel >= 4.2
cvsdist 8e9842
BuildRequires: libtermcap-devel, zlib-devel
cvsdist 63520a
# This Prereq is now required because we only ship static binaries, and
cvsdist 63520a
# need to ensure the "disk" group is created before installation (#60461)
cvsdist 8e9842
Requires: setup
cvsdist 63520a
Requires: rmt
cvsdist dbc173
Obsoletes: dump-static
cvsdist af103c
Provides: dump-static
cvsdist 20e6c5
cvsdist 20e6c5
%description
cvsdist 3417a2
The dump package contains both dump and restore. Dump examines files
cvsdist 3417a2
in a filesystem, determines which ones need to be backed up, and
cvsdist 3417a2
copies those files to a specified disk, tape, or other storage medium.
cvsdist 3417a2
The restore command performs the inverse function of dump; it can
cvsdist 3417a2
restore a full backup of a filesystem. Subsequent incremental backups
cvsdist 3417a2
can then be layered on top of the full backup. Single files and
cvsdist 3417a2
directory subtrees may also be restored from full or partial backups.
cvsdist 20e6c5
cvsdist 20e6c5
Install dump if you need a system for both backing up filesystems and
cvsdist 20e6c5
restoring filesystems after backups.
cvsdist 20e6c5
cvsdist 20e6c5
%package -n rmt
cvsdist 20e6c5
Summary: Provides certain programs with access to remote tape devices.
cvsdist 20e6c5
Group: Applications/Archiving
cvsdist 20e6c5
cvsdist 20e6c5
%description -n rmt
cvsdist 20e6c5
The rmt utility provides remote access to tape devices for programs
cvsdist 20e6c5
like dump (a filesystem backup program), restore (a program for
cvsdist 3417a2
restoring files from a backup), and tar (an archiving program).
cvsdist 20e6c5
cvsdist 20e6c5
%prep
cvsdist 20e6c5
%setup -q
cvsdist 20e6c5
cvsdist 20e6c5
%build
cvsdist c0bb34
%configure %{myoptions} --enable-static --enable-rmt --enable-qfa
cvsdist d6e33c
make OPT="$RPM_OPT_FLAGS -Wall -Wpointer-arith -Wstrict-prototypes \
cvsdist d6e33c
                         -Wmissing-prototypes -Wno-char-subscripts"
cvsdist 20e6c5
cvsdist 20e6c5
%install
cvsdist 20e6c5
rm -rf %{buildroot}
cvsdist 20e6c5
mkdir -p %{buildroot}%{_sbindir}
cvsdist 20e6c5
mkdir -p %{buildroot}%{_mandir}/man8
cvsdist 20e6c5
cvsdist d6e33c
%makeinstall SBINDIR=%{buildroot}%{_sbindir} BINDIR=%{buildroot}%{_sbindir} MANDIR=%{buildroot}%{_mandir}/man8 BINOWNER=$(id -un) BINGRP=$(id -gn) MANOWNER=$(id -un) MANGRP=$(id -gn)
cvsdist 20e6c5
cvsdist cff918
pushd %{buildroot}
cvsdist 20e6c5
  ln -sf dump .%{_sbindir}/rdump
cvsdist 3417a2
  ln -sf dump .%{_sbindir}/rdump.static
cvsdist 3417a2
  ln -sf dump .%{_sbindir}/dump.static
cvsdist 20e6c5
  ln -sf restore .%{_sbindir}/rrestore
cvsdist 3417a2
  ln -sf restore .%{_sbindir}/rrestore.static
cvsdist 3417a2
  ln -sf restore .%{_sbindir}/restore.static
cvsdist 20e6c5
  chmod ug-s .%{_sbindir}/rmt
cvsdist 20e6c5
  mkdir -p .%{_sysconfdir}
cvsdist 20e6c5
  > .%{_sysconfdir}/dumpdates
cvsdist 20e6c5
  ln -sf ..%{_sbindir}/rmt .%{_sysconfdir}/rmt
cvsdist 3417a2
popd
cvsdist 20e6c5
cvsdist 20e6c5
%clean
cvsdist 20e6c5
rm -rf %{buildroot}
cvsdist 20e6c5
cvsdist 20e6c5
%files
cvsdist 20e6c5
%defattr(-,root,root)
cvsdist 20e6c5
%doc CHANGES COPYRIGHT KNOWNBUGS MAINTAINERS README REPORTING-BUGS THANKS TODO
cvsdist 20e6c5
%doc dump.lsm
cvsdist 20e6c5
%attr(0664,root,disk)	%config(noreplace) %{_sysconfdir}/dumpdates
cvsdist 3417a2
%attr(0755,root,root)	/sbin/dump
cvsdist 3417a2
/sbin/rdump
cvsdist 3417a2
%attr(0755,root,root)	/sbin/restore
cvsdist 3417a2
/sbin/rrestore
cvsdist 3417a2
/sbin/*.static
cvsdist 20e6c5
%{_mandir}/man8/dump.*
cvsdist 20e6c5
%{_mandir}/man8/rdump.*
cvsdist 20e6c5
%{_mandir}/man8/restore.*
cvsdist 20e6c5
%{_mandir}/man8/rrestore.*
cvsdist 20e6c5
cvsdist 20e6c5
%files -n rmt
cvsdist 20e6c5
%defattr(-,root,root)
cvsdist 20e6c5
%attr(0755,root,root)	%{_sbindir}/rmt
cvsdist 20e6c5
%{_sysconfdir}/rmt
cvsdist 20e6c5
%{_mandir}/man8/rmt.*
cvsdist 20e6c5
cvsdist 20e6c5
%changelog
Jindrich Novy d992bd
* Wed May 11 2005 Jindrich Novy <jnovy@redhat.com> 0.4b40-2
Jindrich Novy d992bd
- Don't strip binaries to get valid debuginfo
Jindrich Novy d992bd
Jindrich Novy 4eff11
* Tue May  3 2005 Jindrich Novy <jnvoy@redhat.com> 0.4b40-1
Jindrich Novy 4eff11
- Updated to dump 0.4b40
Jindrich Novy 4eff11
- Dropped .ea and .asize patches (applied upstream)
Jindrich Novy 4eff11
Jindrich Novy ff8074
* Wed Mar  2 2005 Jindrich Novy <jnovy@redhat.com> 0.4b39-3
Jindrich Novy ff8074
- Added patch to fix negative size problem with -s/-d 
Jindrich Novy ff8074
  options (#147710) - from Stelian Pop
Jindrich Novy ff8074
Jindrich Novy af5305
* Mon Feb 28 2005 Jindrich Novy <jnovy@redhat.com> 0.4b39-2
Jindrich Novy af5305
- Updated the EA patch with support for in-inode EAs, big
Jindrich Novy af5305
  inodes and fixes 'error in EA block' displayed for
Jindrich Novy af5305
  every single inode (#149299) - patch from Stelian Pop
Jindrich Novy af5305
Jindrich Novy 45e6c1
* Mon Jan 24 2005 Jindrich Novy 
Jindrich Novy 45e6c1
- Updated to dump 0.4b39
Jindrich Novy 45e6c1
- Updated the experimental patch.
Jindrich Novy 45e6c1
Jindrich Novy a64694
* Wed Jan 12 2005 Jindrich Novy <jnovy@redhat.com> 0.4b38-1
Jindrich Novy a64694
- Updated to dump 0.4b38 (#144840)
Jindrich Novy a64694
- Updated the experimental dump patch.
Jindrich Novy a64694
- Dropped the cvs patch, applied in the upstream release.
Jindrich Novy a64694
Daniel J Walsh fe3666
* Mon Dec 20 2004 Dan Walsh <dwalsh@redhat.com> 0.4b37-3
Daniel J Walsh fe3666
- Updated experimental dump patch from upstream to allow dump/restore of xattr.
Daniel J Walsh fe3666
Daniel J Walsh d73a99
* Thu Dec 9 2004 Dan Walsh <dwalsh@redhat.com> 0.4b37-2
Daniel J Walsh d73a99
- Added experimental dump patch from upstream to allow dump/restore of xattr.
Daniel J Walsh d73a99
cvsdist 8e9842
* Thu Jul 29 2004 Warren Togami <wtogami@redhat.com>
cvsdist 8e9842
- 0.4b37
cvsdist 8e9842
cvsdist 4d4380
* Fri Jul 02 2004 Florian La Roche <Florian.LaRoche@redhat.de>
cvsdist 4d4380
- 0.4b36
cvsdist 4d4380
cvsdist 4d4380
* Tue Jun 15 2004 Elliot Lee <sopwith@redhat.com>
cvsdist 4d4380
- rebuilt
cvsdist 4d4380
cvsdist 4d4380
* Fri Feb 13 2004 Elliot Lee <sopwith@redhat.com>
cvsdist 4d4380
- rebuilt
cvsdist cff918
cvsdist 4d4380
* Wed Jun 04 2003 Elliot Lee <sopwith@redhat.com>
cvsdist cff918
- rebuilt
cvsdist cff918
cvsdist cff918
* Sat May 17 2003 Mike A. Harris <mharris@redhat.com> 0.4b33-1
cvsdist cff918
- Updated to dump 0.4b33, fixes (#89835)
cvsdist cff918
cvsdist c0bb34
* Fri Jan 24 2003 Mike A. Harris <mharris@redhat.com> 0.4b28-7
cvsdist c0bb34
- Added --enable-qfa to configure macro for RFE: (#77608)
cvsdist c0bb34
cvsdist c0bb34
* Wed Jan 22 2003 Tim Powers <timp@redhat.com> 0.4b28-6
cvsdist c0bb34
- rebuilt
cvsdist c0bb34
cvsdist c0bb34
* Mon Oct  7 2002 Mike A. Harris <mharris@redhat.com> 0.4b28-5
cvsdist c0bb34
- All-arch rebuild
cvsdist c0bb34
cvsdist e7eaf2
* Fri Jun 21 2002 Tim Powers <timp@redhat.com>
cvsdist e7eaf2
- automated rebuild
cvsdist e7eaf2
cvsdist 0779e3
* Sun May 26 2002 Tim Powers <timp@redhat.com>
cvsdist 0779e3
- automated rebuild
cvsdist 0779e3
cvsdist 0779e3
* Tue May 21 2002 Mike A. Harris <mharris@redhat.com> 0.4b28-2
cvsdist 0779e3
- Updated to dump 0.4b28
cvsdist 0779e3
- Removed atomic_read/write patch, not needed anymore
cvsdist 0779e3
cvsdist 33797b
* Fri Mar  1 2002 Mike A. Harris <mharris@redhat.com> 0.4b27-3
cvsdist 33797b
- BuildRequires readline-devel >= 4.2 for the rl_completion_matches function
cvsdist 33797b
- Added dump-0.4b27-dump-atomic-read-write.patch to avoid namespace conflict
cvsdist 33797b
  with included kernel headers.  atomic_read is a function on s390 and as
cvsdist 33797b
  such, cannot be #undef'd
cvsdist 33797b
cvsdist 63520a
* Thu Feb 28 2002 Mike A. Harris <mharris@redhat.com> 0.4b27-2
cvsdist 63520a
- Added prereq on "setup" to ensure disk group is created prior to this
cvsdist 63520a
  package being installed
cvsdist 63520a
- Somehow the dump package changelog got hosed, and part of the spec file
cvsdist 63520a
  regressed.  I believe it is fixed now.
cvsdist 63520a
cvsdist 63520a
* Tue Feb 26 2002 Mike A. Harris <mharris@redhat.com> 0.4b27-1
cvsdist 63520a
- Updated to dump 0.4b27-1
cvsdist 63520a
cvsdist 63520a
* Fri Feb 22 2002 Mike A. Harris <mharris@redhat.com> 0.4b25-5
cvsdist 63520a
- Bumped release up a couple notches to rebuild in rawhide
cvsdist 63520a
 
cvsdist af103c
* Thu Feb 21 2002 Mike A. Harris <mharris@redhat.com> 0.4b25-1.72.0
cvsdist af103c
- Rebuilt 0.4b25 for erratum release.  Fixes various bugs that have been
cvsdist af103c
  reported in bugzilla which are logged below.  Also fixes a bug caused by
cvsdist af103c
  linking statically to a faulty system library.
cvsdist af103c
- Added Provides dump-static line
cvsdist 63520a
 
cvsdist af103c
* Mon Feb 11 2002 Mike A. Harris <mharris@redhat.com> 0.4b25-3
cvsdist af103c
- Added missing zlib buildprereq
cvsdist af103c
- Rebuild in new environment
cvsdist af103c
cvsdist 63520a
* Wed Jan 09 2002 Tim Powers <timp@redhat.com>
cvsdist af103c
- automated rebuild
cvsdist af103c
cvsdist af103c
* Wed Nov 21 2001 Mike A. Harris <mharris@redhat.com> 0.4b25-1
cvsdist af103c
- Updated to version 0.4b25-1
cvsdist af103c
- Added homepage URL for RFE (#54601)
cvsdist af103c
- Also fixed in this release are (#21272, #52663, #56616)
cvsdist af103c
- Dropped time.h patch as it is unneeded now
cvsdist af103c
cvsdist af103c
* Tue Nov  6 2001 Mike A. Harris <mharris@redhat.com> 0.4b22-7
cvsdist af103c
- Updated BuildPreReq to e2fsprogs-devel >= 1.18, readline-devel >= 4.1 to
cvsdist af103c
  explicitly state the minimum required deps and fix (#51900)
cvsdist fbbab5
cvsdist dbc173
* Sat Sep  8 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.4b22-6
cvsdist 3417a2
- Kill the static subpackage - the standard binaries are now static
cvsdist 63520a
  This removes /usb/sbin/*. The static versions are now in /sbin 
cvsdist 3417a2
  (#53433)
cvsdist dbc173
- Obsolete dump-static
cvsdist 3417a2
cvsdist dbc173
* Tue Aug 14 2001 Trond Eivind Glomsrød <teg@redhat.com> 0.4b22-5
cvsdist 3417a2
- Move non-static binaries to /usr/sbin (#49520)
cvsdist 3417a2
cvsdist d6e33c
* Fri Jun 29 2001 Mike A. Harris <mharris@redhat.com> 0.4b22-4
cvsdist d6e33c
- Added BuildPrereq: readline-devel (#44734 - which was reopened and changed)
cvsdist d6e33c
cvsdist d6e33c
* Sat Jun 16 2001 Mike A. Harris <mharris@redhat.com> 0.4b22-3
cvsdist d6e33c
- Added BuildPrereq: libtermcap-devel (#44734)
cvsdist d6e33c
cvsdist d6e33c
* Tue Jun 12 2001 Mike A. Harris <mharris@redhat.com> 0.4b22-2
cvsdist d6e33c
- Removed release tag from buildroot dirname - messy.
cvsdist d6e33c
- Broke all lines over multiple lines for readability in specfile.
cvsdist d6e33c
- Added --enable-largefile configure flags
cvsdist d6e33c
cvsdist d6e33c
* Mon Jun 11 2001 Florian La Roche <Florian.LaRoche@redhat.de> 0.4b22-1
cvsdist d6e33c
- 0.4b22
cvsdist d6e33c
cvsdist 55c886
* Mon May  7 2001 Mike A. Harris <mharris@redhat.com> 0.4b21-5
cvsdist 55c886
- Added BuildPrereq: e2fsprogs-devel (#27428)
cvsdist 55c886
cvsdist 55c886
* Mon Apr  9 2001 Bill Nottingham <notting@redhat.com>
cvsdist 55c886
- fix ia64
cvsdist 55c886
cvsdist dcc982
* Wed Feb 14 2001 Bill Nottingham <notting@redhat.com>
cvsdist dcc982
- fix build with current glibc
cvsdist dcc982
cvsdist dcc982
* Mon Jan 29 2001 Nalin Dahyabhai <nalin@redhat.com>
cvsdist dcc982
- change copyright: UCB to License: BSD
cvsdist dcc982
cvsdist dcc982
* Fri Jan 26 2001 Nalin Dahyabhai <nalin@redhat.com>
cvsdist dcc982
- update to 0.4b21.
cvsdist dcc982
cvsdist dcc982
* Sun Nov 26 2000 Jeff Johnson <jbj@redhat.com>
cvsdist dcc982
- update to 0.4b20.
cvsdist dcc982
cvsdist dcc982
* Fri Nov 10 2000 Stelian Pop <pop@cybercable.fr>
cvsdist dcc982
- dump 0.4b20 released, first packaging.
cvsdist dcc982
cvsdist dcc982
* Tue Oct 31 2000 Jeff Johnson <jbj@redhat.com>
cvsdist dcc982
- remove setuid bits for Red Hat 5.x errata.
cvsdist dcc982
cvsdist 20e6c5
* Wed Aug 30 2000 Matt Wilson <msw@redhat.com>
cvsdist 20e6c5
- rebuild to cope with glibc locale binary incompatibility, again
cvsdist 20e6c5
cvsdist 20e6c5
* Wed Aug 30 2000 Preston Brown <pbrown@redhat.com>
cvsdist 20e6c5
- fix for dumping files between 2 and 4 gigs (#16466)
cvsdist 20e6c5
cvsdist 20e6c5
* Mon Aug 21 2000 Matt Wilson <msw@redhat.com>
cvsdist 20e6c5
- don't use -O2 on alpha because of compiler ICE
cvsdist 20e6c5
cvsdist 20e6c5
* Sun Aug 20 2000 Jeff Johnson <jbj@redhat.com>
cvsdist 20e6c5
- update to 0.4b19.
cvsdist 20e6c5
cvsdist 20e6c5
* Thu Aug 17 2000 Jeff Johnson <jbj@redhat.com>
cvsdist 20e6c5
- summaries from specspo.
cvsdist 20e6c5
cvsdist 20e6c5
* Wed Aug 16 2000 Erik Troan <ewt@redhat.com>
cvsdist 20e6c5
- support LABEL= in fstab
cvsdist 20e6c5
cvsdist 20e6c5
* Sat Jul 22 2000 Bill Nottingham <notting@redhat.com>
cvsdist 20e6c5
- if dump/restore aren't set(u|g)id, they don't need group tty (#12670)
cvsdist 20e6c5
cvsdist 20e6c5
* Wed Jul 19 2000 Jakub Jelinek <jakub@redhat.com>
cvsdist 20e6c5
- rebuild to cope with glibc locale binary incompatibility
cvsdist 20e6c5
cvsdist 20e6c5
* Wed Jul 12 2000 Prospector <bugzilla@redhat.com>
cvsdist 20e6c5
- automatic rebuild
cvsdist 20e6c5
cvsdist 20e6c5
* Tue Jun 27 2000 Preston Brown <pbrown@redhat.com>
cvsdist 20e6c5
- whoops I had dump commented out of the file list.  fixed.
cvsdist 20e6c5
- dropped suid bits on the static binaries.
cvsdist 20e6c5
- fix char buffer size issue (#11880)
cvsdist 20e6c5
cvsdist 20e6c5
* Mon Jun 19 2000 Preston Brown <pbrown@redhat.com>
cvsdist 20e6c5
- dropped SUID bits
cvsdist 20e6c5
cvsdist 20e6c5
* Tue Jun  6 2000 Jeff Johnson <jbj@redhat.com>
cvsdist 20e6c5
- update to 0.4b17.
cvsdist 20e6c5
- FHS packaging.
cvsdist 20e6c5
cvsdist 20e6c5
* Thu Jun  1 2000 Stelian Pop <pop@cybercable.fr>
cvsdist 20e6c5
- dump 0.4b17 released, first packaging.
cvsdist 20e6c5
cvsdist 20e6c5
* Sat Mar 11 2000 Stelian Pop <pop@cybercable.fr>
cvsdist 20e6c5
- dump 0.4b16 released, first packaging.
cvsdist 20e6c5
cvsdist 20e6c5
* Tue Mar  7 2000 Jeff Johnson <jbj@redhat.com>
cvsdist 20e6c5
- use posix signal handling to preserve dump functionality with libc5.
cvsdist 20e6c5
cvsdist 20e6c5
* Thu Mar  2 2000 Bill Nottingham <notting@redhat.com>
cvsdist 20e6c5
- update to 0.4b15
cvsdist 20e6c5
cvsdist 20e6c5
* Thu Feb 10 2000 Jeff Johnson <jbj@redhat.com>
cvsdist 20e6c5
- dump -0ufB /dev/ftape 1638000 /mnt2 fails to use /mnt2 as tape device (#8036)
cvsdist 20e6c5
cvsdist 20e6c5
* Thu Feb 10 2000 Stelian Pop <pop@cybercable.fr>
cvsdist 20e6c5
- dump 0.4b14 released, first packaging.
cvsdist 20e6c5
cvsdist 20e6c5
* Wed Feb  9 2000 Jeff Johnson <jbj@redhat.com>
cvsdist 20e6c5
- compress man pages.
cvsdist 20e6c5
cvsdist 20e6c5
* Thu Jan 27 2000 Jeff Johnson <jbj@redhat.com>
cvsdist 20e6c5
- update to 0.4b13.
cvsdist 20e6c5
cvsdist 20e6c5
* Fri Jan 21 2000 Stelian Pop <pop@cybercable.fr>
cvsdist 20e6c5
- dump 0.4b13 released, first packaging.
cvsdist 20e6c5
cvsdist 20e6c5
* Mon Jan 10 2000 Jeff Johnson 
cvsdist 20e6c5
- update to 0.4b12.
cvsdist 20e6c5
cvsdist 20e6c5
* Fri Jan 8 2000 Stelian Pop <pop@cybercable.fr>
cvsdist 20e6c5
- dump 0.4b12 released, first packaging.
cvsdist 20e6c5
cvsdist 20e6c5
* Sun Dec 5 1999 Stelian Pop <pop@cybercable.fr>
cvsdist 20e6c5
- dump 0.4b11 released, first packaging.
cvsdist 20e6c5
cvsdist 20e6c5
* Sat Nov 27 1999 Jeff Johnson <jbj@redhat.com>
cvsdist 20e6c5
- intergrate Stelian's fixes (Thanks!).
cvsdist 20e6c5
cvsdist 20e6c5
* Sun Nov 21 1999 Stelian Pop <pop@cybercable.fr>
cvsdist 20e6c5
- dump 0.4b10 released, first packaging.
cvsdist 20e6c5
cvsdist 20e6c5
* Thu Nov 11 1999 Stelian Pop <pop@cybercable.fr>
cvsdist 20e6c5
- make static versions also for rescue purposes.
cvsdist 20e6c5
cvsdist 20e6c5
* Wed Nov 5 1999 Stelian Pop <pop@cybercable.fr>
cvsdist 20e6c5
- dump 0.4b9 released, first packaging.
cvsdist 20e6c5
cvsdist 20e6c5
* Wed Nov 3 1999 Stelian Pop <pop@cybercable.fr>
cvsdist 20e6c5
- dump 0.4b8 released, first packaging.
cvsdist 20e6c5
cvsdist 20e6c5
* Thu Oct 8 1999 Stelian Pop <pop@cybercable.fr>
cvsdist 20e6c5
- dump 0.4b7 released, first packaging.
cvsdist 20e6c5
cvsdist 20e6c5
* Thu Sep 30 1999 Stelian Pop <pop@cybercable.fr>
cvsdist 20e6c5
- dump 0.4b6 released, first packaging.
cvsdist 20e6c5
cvsdist 20e6c5
* Fri Sep 10 1999 Jeff Johnson <jbj@redhat.com>
cvsdist 20e6c5
- recompile with e2fsprogs = 1.15 (#4962).
cvsdist 20e6c5
cvsdist 20e6c5
* Sat Jul 31 1999 Jeff Johnson <jbj@redhat.com>
cvsdist 20e6c5
- workaround egcs bug (#4281) that caused dump problems (#2989).
cvsdist 20e6c5
- use sigjmp_buf, not jmp_buf (#3260).
cvsdist 20e6c5
- invoke /etc/rmt (instead of rmt) like other unices. (#3272).
cvsdist 20e6c5
- use glibc21 err/glob rather than the internal compatibility routines.
cvsdist 20e6c5
- wire $(OPT) throughout Makefile's.
cvsdist 20e6c5
- fix many printf problems, mostly lint clean.
cvsdist 20e6c5
- merge SuSE, Debian and many OpenBSD fixes.
cvsdist 20e6c5
cvsdist 20e6c5
* Thu Mar 25 1999 Jeff Johnson <jbj@redhat.com>
cvsdist 20e6c5
- remove setuid/setgid bits from /sbin/rmt (dump/restore are OK).
cvsdist 20e6c5
cvsdist 20e6c5
* Sun Mar 21 1999 Cristian Gafton <gafton@redhat.com> 
cvsdist 20e6c5
- auto rebuild in the new build environment (release 6)
cvsdist 20e6c5
cvsdist 20e6c5
* Fri Mar 19 1999 Jeff Johnson <jbj@redhat.com>
cvsdist 20e6c5
- strip binaries.
cvsdist 20e6c5
cvsdist 20e6c5
* Thu Mar 18 1999 Jeff Johnson <jbj@redhat.com>
cvsdist 20e6c5
- Fix dangling symlinks (#1551).
cvsdist 20e6c5
cvsdist 20e6c5
* Wed Mar 17 1999 Michael Maher <mike@redhat.com>
cvsdist 20e6c5
- Top O' the morning, build root's fixed for man pages.  
cvsdist 20e6c5
cvsdist 20e6c5
* Fri Feb 19 1999 Preston Brown <pbrown@redhat.com>
cvsdist 20e6c5
- upgraded to dump 0.4b4, massaged patches.
cvsdist 20e6c5
cvsdist 20e6c5
* Tue Feb 02 1999 Ian A Cameron <I.A.Cameron@open.ac.uk>
cvsdist 20e6c5
- added patch from Derrick J Brashear for traverse.c to stop bread errors
cvsdist 20e6c5
cvsdist 20e6c5
* Wed Jan 20 1999 Jeff Johnson <jbj@redhat.com>
cvsdist 20e6c5
- restore original 6755 root.tty to dump/restore, defattr did tty->root (#684).
cvsdist 20e6c5
- mark /etc/dumpdates as noreplace.
cvsdist 20e6c5
cvsdist 20e6c5
* Tue Jul 14 1998 Jeff Johnson <jbj@redhat.com>
cvsdist 20e6c5
- add build root.
cvsdist 20e6c5
cvsdist 20e6c5
* Tue May 05 1998 Prospector System <bugs@redhat.com>
cvsdist 20e6c5
- translations modified for de, fr, tr
cvsdist 20e6c5
cvsdist 20e6c5
* Thu Apr 30 1998 Cristian Gafton <gafton@redhat.com>
cvsdist 20e6c5
- added a patch for resolving linux/types.h and sys/types.h conflicts
cvsdist 20e6c5
cvsdist 20e6c5
* Wed Dec 31 1997 Erik Troan <ewt@redhat.com>
cvsdist 20e6c5
- added prototype of llseek() so dump would work on large partitions
cvsdist 20e6c5
cvsdist 20e6c5
* Thu Oct 30 1997 Donnie Barnes <djb@redhat.com>
cvsdist 20e6c5
- made all symlinks relative instead of absolute
cvsdist 20e6c5
cvsdist 20e6c5
* Thu Jul 10 1997 Erik Troan <ewt@redhat.com>
cvsdist 20e6c5
- built against glibc
cvsdist 20e6c5
cvsdist 20e6c5
* Thu Mar 06 1997 Michael K. Johnson <johnsonm@redhat.com>
cvsdist 20e6c5
- Moved rmt to its own package.
cvsdist 20e6c5
cvsdist 20e6c5
* Tue Feb 11 1997 Michael Fulbright <msf@redhat.com>
cvsdist 20e6c5
- Added endian cleanups for SPARC
cvsdist 20e6c5
cvsdist 20e6c5
* Fri Feb 07 1997 Michael K. Johnson <johnsonm@redhat.com> 
cvsdist 20e6c5
- Made /etc/dumpdates writeable by group disk.