2007-01-15 10:53:19 +01:00
|
|
|
#
|
2009-04-20 01:50:05 +02:00
|
|
|
# spec file for package drbd (Version 8.3.1)
|
2007-01-15 10:53:19 +01:00
|
|
|
#
|
2009-01-13 18:43:34 +01:00
|
|
|
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2007-01-15 10:53:19 +01:00
|
|
|
#
|
2008-08-18 18:28:48 +02:00
|
|
|
# All modifications and additions to the file contributed by third parties
|
|
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
|
|
# upon. The license for this file, and modifications and additions to the
|
|
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
|
|
# license for the pristine package is not an Open Source License, in which
|
|
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
|
|
# published by the Open Source Initiative.
|
|
|
|
|
2007-01-15 10:53:19 +01:00
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
|
2008-04-15 15:34:25 +02:00
|
|
|
|
2007-01-15 10:53:19 +01:00
|
|
|
Name: drbd
|
2008-06-04 13:07:09 +02:00
|
|
|
BuildRequires: bison flex glib-devel kernel-source kernel-syms module-init-tools
|
2007-01-15 10:53:19 +01:00
|
|
|
Summary: Distributed Replicated Block Device
|
2009-04-20 01:50:05 +02:00
|
|
|
Version: 8.3.1
|
|
|
|
Release: 1
|
2008-11-21 15:15:51 +01:00
|
|
|
Source: %{name}-%{version}.tar.bz2
|
2007-09-17 17:10:20 +02:00
|
|
|
License: GPL v2 or later
|
2007-01-15 10:53:19 +01:00
|
|
|
Group: Productivity/Clustering/HA
|
|
|
|
Provides: drbdsetup drbd-control
|
2007-09-17 17:10:20 +02:00
|
|
|
Url: http://www.drbd.org/
|
2007-01-15 10:53:19 +01:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
PreReq: %insserv_prereq %fillup_prereq fileutils
|
|
|
|
%suse_kernel_module_package kdump um
|
|
|
|
|
|
|
|
%description
|
|
|
|
Drbd is a distributed replicated block device. It mirrors a block
|
|
|
|
device over the network to another machine. Think of it as networked
|
|
|
|
raid 1. It is a building block for setting up clusters.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Authors:
|
|
|
|
--------
|
|
|
|
Philipp Reisner <philipp.reisner@linbit.com>
|
|
|
|
Lars Ellenberg <lars.ellenberg@linbit.com>
|
|
|
|
|
|
|
|
%package KMP
|
2008-04-15 15:34:25 +02:00
|
|
|
License: GPL v2 or later
|
2007-01-15 10:53:19 +01:00
|
|
|
Summary: Distributed Replicated Block Device
|
|
|
|
Group: System/Kernel
|
|
|
|
|
|
|
|
%description KMP
|
|
|
|
Drbd is a distributed replicated block device. It mirrors a block
|
|
|
|
device over the network to another machine. Think of it as networked
|
|
|
|
raid 1. It is a building block for setting up clusters.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Authors:
|
|
|
|
--------
|
|
|
|
Philipp Reisner <philipp.reisner@linbit.com>
|
|
|
|
Lars Ellenberg <lars.ellenberg@linbit.com>
|
|
|
|
|
|
|
|
%prep
|
2008-11-21 15:15:51 +01:00
|
|
|
%setup -n %{name}-%{version}
|
2007-01-15 10:53:19 +01:00
|
|
|
mkdir source
|
|
|
|
cp -a drbd/. source/. || :
|
2007-09-17 17:10:20 +02:00
|
|
|
cp source/Makefile-2.6 source/Makefile
|
2007-01-15 10:53:19 +01:00
|
|
|
mkdir obj
|
|
|
|
|
|
|
|
%build
|
|
|
|
export RPM_BUILD_ROOT
|
2007-09-18 12:08:16 +02:00
|
|
|
export CONFIG_BLK_DEV_DRBD=m
|
2007-01-15 10:53:19 +01:00
|
|
|
export DIST=suselike
|
|
|
|
mkdir -p %{buildroot}
|
|
|
|
make clean
|
|
|
|
make PREFIX=%{buildroot}/ OPTFLAGS="$RPM_OPT_FLAGS" tools
|
|
|
|
export EXTRA_CFLAGS='-DVERSION=\"%version\"'
|
|
|
|
for flavor in %flavors_to_build; do
|
|
|
|
rm -rf obj/$flavor
|
|
|
|
cp -r source obj/$flavor
|
|
|
|
make -C /usr/src/linux-obj/%_target_cpu/$flavor modules \
|
|
|
|
M=$PWD/obj/$flavor
|
|
|
|
done
|
|
|
|
|
|
|
|
%install
|
|
|
|
export RPM_BUILD_ROOT
|
2007-09-18 12:08:16 +02:00
|
|
|
export CONFIG_BLK_DEV_DRBD=m
|
2007-01-15 10:53:19 +01:00
|
|
|
export DIST=suselike
|
|
|
|
make PREFIX=%{buildroot}/ install-tools
|
2008-08-18 18:28:48 +02:00
|
|
|
mv $RPM_BUILD_ROOT/etc/bash_completion.d/drbdadm{,.sh}
|
2007-01-15 10:53:19 +01:00
|
|
|
ln -sf ../etc/init.d/drbd $RPM_BUILD_ROOT/sbin/rcdrbd
|
|
|
|
mkdir -p $RPM_BUILD_ROOT/var/lib/drbd
|
|
|
|
#
|
|
|
|
# and I only want to install a hint to the example conf
|
|
|
|
#
|
|
|
|
cat <<___ > $RPM_BUILD_ROOT/etc/drbd.conf
|
|
|
|
#
|
|
|
|
# please have a a look at the example configuration file in
|
|
|
|
# %{_docdir}/drbd/drbd.conf
|
|
|
|
#
|
|
|
|
___
|
2008-06-04 13:07:09 +02:00
|
|
|
#
|
|
|
|
%ifnarch %ix86 x86_64
|
|
|
|
rm -rf $RPM_BUILD_ROOT/etc/xen
|
|
|
|
%endif
|
2007-01-15 10:53:19 +01:00
|
|
|
# Install kernel modules:
|
|
|
|
export INSTALL_MOD_PATH=$RPM_BUILD_ROOT
|
|
|
|
export INSTALL_MOD_DIR=updates
|
|
|
|
for flavor in %flavors_to_build; do
|
|
|
|
make -C /usr/src/linux-obj/%_target_cpu/$flavor modules_install \
|
|
|
|
M=$PWD/obj/$flavor
|
|
|
|
done
|
|
|
|
|
|
|
|
%clean
|
2008-08-18 18:28:48 +02:00
|
|
|
rm -rf "$RPM_BUILD_ROOT"
|
2007-01-15 10:53:19 +01:00
|
|
|
|
|
|
|
%post
|
2008-08-18 18:28:48 +02:00
|
|
|
%{fillup_and_insserv}
|
2007-01-15 10:53:19 +01:00
|
|
|
|
2008-04-15 15:34:25 +02:00
|
|
|
%preun
|
|
|
|
%{stop_on_removal}
|
|
|
|
|
2007-01-15 10:53:19 +01:00
|
|
|
%postun
|
|
|
|
%{insserv_cleanup}
|
|
|
|
|
|
|
|
%files -n drbd
|
2007-09-17 17:10:20 +02:00
|
|
|
%defattr(644, root, root)
|
|
|
|
%config(noreplace) /etc/drbd.conf
|
2008-08-18 18:28:48 +02:00
|
|
|
/etc/bash_completion.d/drbdadm.sh
|
2007-09-17 17:10:20 +02:00
|
|
|
%defattr(755, root, root)
|
2007-01-15 10:53:19 +01:00
|
|
|
/sbin/drbdadm
|
|
|
|
/sbin/drbdsetup
|
|
|
|
/sbin/rcdrbd
|
2007-09-17 17:10:20 +02:00
|
|
|
/sbin/drbdmeta
|
2009-04-20 01:50:05 +02:00
|
|
|
/usr/sbin/drbd-overview
|
2008-06-04 13:07:09 +02:00
|
|
|
%ifarch %ix86 x86_64
|
2009-04-20 01:50:05 +02:00
|
|
|
%dir /etc/xen
|
|
|
|
%dir /etc/xen/scripts
|
2007-09-17 17:10:20 +02:00
|
|
|
/etc/xen/scripts/block-drbd
|
2008-06-04 13:07:09 +02:00
|
|
|
%endif
|
2007-09-17 17:10:20 +02:00
|
|
|
/etc/ha.d/resource.d/drbddisk
|
2009-04-20 01:50:05 +02:00
|
|
|
/etc/ha.d/resource.d/drbdupper
|
|
|
|
%dir /etc/udev
|
|
|
|
%dir /etc/udev/rules.d
|
|
|
|
/etc/udev/rules.d/65-drbd.rules
|
2007-01-15 10:53:19 +01:00
|
|
|
%config /etc/init.d/drbd
|
2007-09-17 17:10:20 +02:00
|
|
|
%defattr(-, root, root)
|
|
|
|
/var/lib/drbd
|
|
|
|
/usr/lib/drbd
|
2007-01-15 10:53:19 +01:00
|
|
|
%dir /etc/ha.d
|
|
|
|
%dir /etc/ha.d/resource.d
|
|
|
|
%doc %{_mandir}/man5/drbd.conf.5*
|
|
|
|
%doc %{_mandir}/man8/drbd.8*
|
|
|
|
%doc %{_mandir}/man8/drbdsetup.8*
|
|
|
|
%doc %{_mandir}/man8/drbdadm.8*
|
|
|
|
%doc %{_mandir}/man8/drbddisk.8*
|
2007-09-17 17:10:20 +02:00
|
|
|
%doc %{_mandir}/man8/drbdmeta.8*
|
2007-01-15 10:53:19 +01:00
|
|
|
%doc COPYING
|
|
|
|
%doc README
|
|
|
|
%doc ChangeLog
|
|
|
|
%doc scripts/drbd.conf
|
|
|
|
|
2007-03-30 02:32:51 +02:00
|
|
|
%changelog
|
2009-04-20 01:50:05 +02:00
|
|
|
* Mon Apr 20 2009 ro@suse.de
|
|
|
|
- update to 8.3.1
|
|
|
|
* Fixed drbdadm invalidate on disconnected devices (reg in 8.2.7)
|
|
|
|
* Fixed a hard to trigger spinlock deadlock when using device stacking
|
|
|
|
with the upper device having a smaller minor number than the lower device.
|
|
|
|
(Bugz 210)
|
|
|
|
* Adding a missing range check in ensure_mdev()
|
|
|
|
* Implemented a congested_fn; the kernel can keep its pdflushes running now
|
|
|
|
* Improvements the connection code for high latency links
|
|
|
|
* Fix for several potential memory leaks when allocating a device
|
|
|
|
* Use an additional meta data bit to store the fact of an old crashed primary
|
|
|
|
* Udev rule that populates /dev/drbd/by-res/ and /dev/drbd/by-disk/
|
|
|
|
* New timeout option: outdated-wfc-timeout
|
|
|
|
* New drbdmeta option: --ignore-sanity-checks
|
|
|
|
* Include statement for drbd.conf
|
|
|
|
* Improvements to drbd-overview.pl
|
|
|
|
* Fixed snapshot-resync-target-lvm.sh to work with more than 10 devices
|
|
|
|
* Do not force a full resync after a detach on a primary node
|
|
|
|
* Compatibility with Linux 2.6.27, 2.6.28 and 2.6.29
|
|
|
|
- update to 8.3.0
|
|
|
|
* Fixed 'sleep with spinlock held' in case online verify found a difference
|
|
|
|
* Fixed error code pathes in request processing.
|
|
|
|
* Fix for stack smashing in drbdmeta
|
|
|
|
* Fixed a bug that could lead to a crash when detaching/attaching
|
|
|
|
on the primary under heavy IO (Bugz 171)
|
|
|
|
* Fixed a bug in the new epoch code (introduced with 8.2.7).
|
|
|
|
Might cause crash at reconnect after connection loss during heavy IO
|
|
|
|
(Bugz 160)
|
|
|
|
* Fixed a bug in drbdsetup that could cause drbdsetup wait-connect to
|
|
|
|
miss the connection event.
|
|
|
|
* Fixed a race condition in the new barrier code. (Reordered barrier ACKs)
|
|
|
|
* Do not rely on blkdev_issue_flush() returning ENOTSUPP
|
|
|
|
* bitmap in unmapped pages = support for devices > 4TByte (was DRBD+)
|
|
|
|
* checksum based resync (was DRBD+)
|
|
|
|
* support for stacked resource (was DRBD+)
|
|
|
|
* Added support for stacked resources to the bash completion stuff
|
|
|
|
* Added missing documentation (manpages)
|
|
|
|
* Fixed drbdadm handlers for stacked resources
|
|
|
|
* Support of drbd-proxy in stacked setups
|
|
|
|
* RedHat cluster suite (rgmanager) integration scripts
|
|
|
|
* Renamed 'state' to 'role'
|
|
|
|
* More build compatibility with older vendor kernels
|
|
|
|
* Added drbd-overview.pl to the packages
|
|
|
|
- update filelist
|
2009-01-13 18:43:34 +01:00
|
|
|
* Tue Jan 13 2009 dgollub@suse.de
|
|
|
|
- Add kernel-syms-rt to build requires to build SLERT KMPs
|
2008-12-15 12:27:19 +01:00
|
|
|
* Wed Dec 10 2008 lmb@suse.de
|
|
|
|
- Update with changes from 8a9ba53abe973301639beacc55eec569b43507e5:
|
|
|
|
- Fix buffer overflow and off-by-one errors in drbd user-space token
|
|
|
|
parser (bnc#450883).
|
|
|
|
- Fix resizing of devices.
|
|
|
|
- Fix a NULL pointer dereference in barrier handling.
|
|
|
|
- Handle failing request better.
|
|
|
|
- Race in UUID synchronization.
|
|
|
|
- Fix a call to a blocking function from within a spinlock.
|
|
|
|
- drbd-optflags.patch: removed, is now upstream.
|
2008-11-21 15:15:51 +01:00
|
|
|
* Fri Nov 21 2008 lmb@suse.de
|
|
|
|
- Update from 8.2.7-rc1 to 8.2.7 proper.
|
|
|
|
- Endianness fixes.
|
|
|
|
- Handle out-of-sequence barrier acks.
|
|
|
|
- Allow DRBD to user other cn_idx values in case our default value is
|
|
|
|
already taken.
|
|
|
|
- Although Primary/Diskless/StandAlone is invalid it is not unconfigured
|
|
|
|
- become UpToDate on both after detach-attach on a connected secondary
|
|
|
|
device pair
|
|
|
|
- 2.6.28 compatibility (needed for SLE11 kernel)
|
|
|
|
- Bugfixes to write barrier handling.
|
2008-10-27 16:44:50 +01:00
|
|
|
* Mon Oct 27 2008 lmb@suse.de
|
|
|
|
- Include fixes from upstream
|
|
|
|
(0e87a13b63e2ef87af6cfcc0d875721c53f37ed9).
|
|
|
|
- Fixed possible Oops on connection loss during sync handshake.
|
|
|
|
- Latency improvements.
|
|
|
|
- Improved barrier support.
|
2008-09-05 00:35:51 +02:00
|
|
|
* Thu Sep 04 2008 lmb@suse.de
|
|
|
|
- Imported some changes from upstream, including:
|
|
|
|
- Made it to compile on Linux-2.6.26
|
|
|
|
- Fixed online resizing if there is application IO on the fly when the
|
|
|
|
resize is triggered.
|
|
|
|
- Fixed online resizing if it is triggered from the secondary node.
|
|
|
|
- Fixed a possible deadlock in case "become-primary-on-both" is used, and
|
|
|
|
a resync starts
|
|
|
|
- Fixed the invocation of the pri-on-incon-degr handler
|
|
|
|
- Fixed the exit codes of drbdsetup
|
|
|
|
- sock_create_lite() to avoid a socket->sk leak
|
|
|
|
- Auto-tune socket buffers if sndbuf-size is set to zero
|
2008-08-18 18:28:48 +02:00
|
|
|
* Mon Aug 18 2008 mrueckert@suse.de
|
|
|
|
- remove outdated options in the fillup_and_insserv call
|
|
|
|
* Mon Aug 18 2008 schwab@suse.de
|
|
|
|
- Fix name of completions file.
|
2008-07-15 21:29:07 +02:00
|
|
|
* Tue Jul 15 2008 lmb@suse.de
|
|
|
|
- Update to 8.2.6 and include all bugfixes from upstream.
|
|
|
|
- Fix loading of module (bnc#403731).
|
|
|
|
- Include bash completion for drbdadm.
|
|
|
|
- Added the before-resync-target handler.
|
|
|
|
- Fixed the out-of-sync handler.
|
|
|
|
- Added the max-bio-bvecs option to workaround issues in a stack of
|
|
|
|
DRBD/LVM/Xen.
|
|
|
|
- Fix online resizing in case if triggered from secondary.
|
|
|
|
- Includes bugfixes from 8.0.11 -> 8.0.12 branch.
|
2008-06-04 13:07:09 +02:00
|
|
|
* Wed Jun 04 2008 ro@suse.de
|
|
|
|
- buildreq xen-tools only on x86,x86_64
|
2008-06-03 22:04:53 +02:00
|
|
|
* Tue Jun 03 2008 coolo@suse.de
|
|
|
|
- avoid packaging a directory of xen-tools with different permissions
|
2008-04-15 15:34:25 +02:00
|
|
|
* Tue Apr 15 2008 lmb@suse.de
|
|
|
|
- Update to 8.2.5 (FATE#302403)
|
|
|
|
- Include online-verify + various fixes to it.
|
|
|
|
- Fix races between online-verify and application writes.
|
|
|
|
- Fixed data-integrity-alg features.
|
|
|
|
- Improved latency.
|
|
|
|
- Full support for migration of meta-data from 0.7 -> 0.8.
|
|
|
|
- Fix some more races, bugs, and memory leaks.
|
|
|
|
* Wed Dec 05 2007 ro@suse.de
|
2007-12-06 00:03:37 +01:00
|
|
|
- hack to compile with 2.6.24
|
2008-04-15 15:34:25 +02:00
|
|
|
* Tue Sep 18 2007 ro@suse.de
|
2007-09-18 12:08:16 +02:00
|
|
|
- do really build a module
|
2008-04-15 15:34:25 +02:00
|
|
|
* Mon Sep 17 2007 lmb@suse.de
|
2007-09-17 17:10:20 +02:00
|
|
|
- Update to drbd 8.0.6 for kernel-compatibility (310187)
|
2008-10-27 16:44:50 +01:00
|
|
|
* Wed Apr 04 2007 lrupp@suse.de
|
2007-04-04 22:13:40 +02:00
|
|
|
- added module-init-tools to BuildRequires
|
2008-04-15 15:34:25 +02:00
|
|
|
* Fri Mar 30 2007 rguenther@suse.de
|
2007-03-30 16:29:03 +02:00
|
|
|
- add flex BuildRequires
|
|
|
|
- add /etc/modprobe.d directory
|
2008-04-15 15:34:25 +02:00
|
|
|
* Fri Mar 30 2007 ro@suse.de
|
2007-03-30 02:32:51 +02:00
|
|
|
- added bison to buildreq
|
2008-04-15 15:34:25 +02:00
|
|
|
* Mon Jan 15 2007 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Update to 0.7.23 for Linux kernels >2.6.19.
|
2009-04-20 01:50:05 +02:00
|
|
|
* Tue Oct 31 2006 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Update to the officially released 0.7.22 version.
|
|
|
|
- Implement "freeze_io" feature.
|
|
|
|
- convert-MODULE_PARM.diff: drop unneeded patch.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Fri Oct 06 2006 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Update to 0.7.22:
|
|
|
|
- In protocol A and B, on connection loss, drbd could "forget" to set
|
|
|
|
certain areas out of sync.
|
|
|
|
- fix races between failure in drbd_send_dblock and concurrently
|
|
|
|
running tl_clear.
|
|
|
|
- fix potential access-afer-free in drbd_dio_end.
|
|
|
|
- fix possible list corruption respective resulting deadlock in
|
|
|
|
receive_DataRequest.
|
|
|
|
- improved the drbd_thread_stop / start code.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Mon Aug 14 2006 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Update to 0.7.21.
|
|
|
|
* Fixed the "syncer stalled" after reconnect symptom.
|
|
|
|
* Fixed the "stalled in WFParams" after reconnect symptom. The cause
|
|
|
|
of this bug was actually a misuse of the data socket.
|
|
|
|
* Allow to set the uplug_watermark to 1, only usefull for very strange
|
|
|
|
cases.
|
|
|
|
* The GC comparison code failed to start a resync in case the two
|
|
|
|
cluster node failed simultaniously (common power failure).
|
|
|
|
* Fixed DRBD's code to start kernel threads to work on 2.6.17 also.
|
|
|
|
* IOCTL return codes fixed for 32bit userland - 64 bit kernel
|
|
|
|
setups.
|
|
|
|
* New config option "unplug-watermark".
|
|
|
|
* Released the drbd_alloc_ee() / drbd_free_ee() implementation from
|
|
|
|
the DRBD+ branch to the main branch.
|
|
|
|
* Fixed a bug where lc_del() left a list poison in an LRU chache's
|
|
|
|
hash table. The only way to trigger this bug was:
|
|
|
|
up (>>200M), primary, mkfs, resize to 200M, down, up
|
|
|
|
* DRBD now propagates the backing storage's read ahead properties
|
|
|
|
to upper layers. With devices that read very fast, this is
|
|
|
|
important.
|
|
|
|
* GFP_KERNEL was changed to GFP_NOIO in a few places, to make it
|
|
|
|
more save against deadlocks in the memory subsystem.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Thu May 04 2006 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Import fixes from 0.7.18:
|
|
|
|
- Under high memory pressure it was possible to hit a deadlock on a
|
|
|
|
kmalloc(). Changed the GFP mask, it is no longer possible to deadlock
|
|
|
|
it with memory pressure.
|
|
|
|
- With very unlucky network timing during connect DRBD falls into a
|
|
|
|
connect / drop-connection loop, that as soon as DRBD is in this loop
|
|
|
|
is very stable. This is fixed now, DRBD detects this situation an
|
|
|
|
breaks out of it.
|
|
|
|
- Fix to the init-script. Now it waits until udev has created the device
|
|
|
|
nodes of _all_ resources.
|
|
|
|
- A small fix for the 32bit userland 64bit kernel people, running older
|
|
|
|
kernels.
|
|
|
|
- Improved handling of IO errors during initial read in of the activity
|
|
|
|
log.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Sun Apr 02 2006 agruen@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- convert-MODULE_PARM.diff: Convert from the obsolete MODULE_PARM
|
|
|
|
to the new module_param.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Mon Mar 27 2006 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Fix memory allocation flags for the activity log (GFP_KERNEL ->
|
|
|
|
GFP_NOIO) to avoid possible deadlock.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Mon Mar 06 2006 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Import upstream fixes from 0.7.17:
|
|
|
|
- There was a bug that could cause the activity log to be not applied
|
|
|
|
after a primary crash, when an other size than 127 elements was
|
|
|
|
configured.
|
|
|
|
- There was a bug in the activity log code, that could cause that the
|
|
|
|
latest update to the AL is omitted at recovery time.
|
|
|
|
- The "Marked additional XXKB as out-of-synced based on AL." message
|
|
|
|
showed one one eighth of the real amount.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Thu Feb 16 2006 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Update to 0.7.16, new fixes:
|
|
|
|
- DRBD no longer shrinks an consistent device if it gets connected to
|
|
|
|
an smaller peer or attached to a smaller disk.
|
|
|
|
- There was a bug related to the degr-wcf-timeout config option, it was
|
|
|
|
never used in recent DRBD releases. Fixed.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Fri Feb 03 2006 agruen@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- drbd.spec: Replace %%arch with %%_target_cpu.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Thu Feb 02 2006 ro@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- added KMP subpackage (required with suse_kernel_module_package)
|
2008-04-15 15:34:25 +02:00
|
|
|
* Tue Jan 31 2006 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Change km_drbd to a KMP.
|
|
|
|
- Import fix to deal with serialized recursive calls to
|
|
|
|
generic_make_request() and avoid a deadlock (SVN r2056).
|
2008-04-15 15:34:25 +02:00
|
|
|
* Thu Jan 26 2006 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Compile fix for 2.6.16-rc1.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Wed Jan 25 2006 mls@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- converted neededforbuild to BuildRequires
|
2008-04-15 15:34:25 +02:00
|
|
|
* Mon Jan 23 2006 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Import some updated documentation.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Tue Dec 20 2005 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Update to 0.7.15.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Thu Dec 01 2005 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Update to 0.7.14/SVN.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Thu Sep 01 2005 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Switch to stable version 0.7.13.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Thu Jun 30 2005 meissner@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- use RPM_OPT_FLAGS correctly.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Mon Feb 21 2005 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Update to upstream 0.8_pre1 (SVN 1763).
|
2008-04-15 15:34:25 +02:00
|
|
|
* Wed Feb 02 2005 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Update to upstream 0.7.10 (1754).
|
2008-04-15 15:34:25 +02:00
|
|
|
* Fri Jan 14 2005 ro@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- fix typo in specfile
|
2008-04-15 15:34:25 +02:00
|
|
|
* Wed Dec 01 2004 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Update to upstream version 0.7.6.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Mon Sep 20 2004 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Merge fixes from SLES9 SP1 with STABLE.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Fri Sep 03 2004 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Realign with upstream.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Fri Aug 27 2004 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Allow invalidate if cstate<Connected and Secondary
|
|
|
|
- Data integrity protection: Disallow the user to make a primary node
|
|
|
|
SyncTarget via IOCTLs
|
|
|
|
- Fix modprobe.d documentation (for users who do want to use the new
|
|
|
|
block major explicitly).
|
|
|
|
- Cosmetic: Disable XFS statistics by default.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Wed Aug 25 2004 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Fix human-count handling to avoid more data inconsistency.
|
|
|
|
- SLES9/SL9.1: Do NOT use new major number by default.
|
|
|
|
- Pre-generate documentation. Shorten dependencies even more!
|
2008-04-15 15:34:25 +02:00
|
|
|
* Mon Aug 16 2004 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Shrink dependency list even further.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Mon Aug 16 2004 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Remove subversion requirement for building with perl hack.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Tue Aug 10 2004 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Add modprobe.d file so that upgrading from previous versions is
|
|
|
|
smooth.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Fri Aug 06 2004 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Update to 0.7.2-final (still from SVN).
|
|
|
|
- Proper handling of backing storage devices that occasionally fail
|
|
|
|
READA (=read ahead) requests. (E.g. LVM and MD) DRBD now fails READA
|
|
|
|
requests itself, if a resynchronisation is running and it would need
|
|
|
|
to fetch the block from its peer.
|
|
|
|
- "drbdadm adjust" had a race, which caused random errors. ( Missing
|
|
|
|
waitpid() ). Fixed now.
|
|
|
|
- Properly substract SyncPause times from the syncer performance
|
|
|
|
numbers.
|
|
|
|
- Fix to the syncer progress bar in /proc/drbd.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Fri Aug 06 2004 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Fix minor module build issue.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Wed Aug 04 2004 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Upgrade to 0.7.2-pre from SVN
|
|
|
|
- Changes block major from 43 to officially reserved 147 and from
|
|
|
|
/dev/nbXX to /dev/drbdXX.
|
|
|
|
- Work-around for XFS bug.
|
|
|
|
- Handle human and timeout counters correctly.
|
|
|
|
- Some bugfixes and speedups in particular for protocol A and B.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Wed Jul 07 2004 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Fix various 64bit issues. (Final part of #41538)
|
2008-04-15 15:34:25 +02:00
|
|
|
* Thu Jul 01 2004 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Reenable fixed zero-copy again. (#42222)
|
|
|
|
- Fix drbd to work with hard sector sizes != 512bytes (dasd)
|
|
|
|
(#41538)
|
|
|
|
- Fix 64bit problem when calling wait_event_interruptible_timeout()
|
|
|
|
- Merge upstream code cleanups.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Fri Jun 18 2004 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Update to drbd-0.7-pre8 from upstream:
|
|
|
|
- Disabling zero-copy IO for now (#41852).
|
|
|
|
- Bitmap code restructured and lots of bugs fixed.
|
|
|
|
- Safe default: Always force a full-resync on initial setup.
|
|
|
|
- Ensuring that we never sync/read from an inconsistent peer.
|
|
|
|
- Various other fixes.
|
2009-04-20 01:50:05 +02:00
|
|
|
* Wed Jun 09 2004 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- fix ioctls on s390x
|
|
|
|
- Fix failure in local disk handling.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Wed Jun 02 2004 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Do not go into in an infinite loop on recursive symlinks under /dev.
|
|
|
|
- More consistent error handling in the kernel module.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Tue Jun 01 2004 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Import test harness.
|
|
|
|
- More fixes from upstream:
|
|
|
|
+ Rate-limit printks to prevent DoS
|
|
|
|
+ Test for whether the lower level device is detached in all cases
|
|
|
|
+ Do not send several Write Hints in a row
|
2008-04-15 15:34:25 +02:00
|
|
|
* Thu May 27 2004 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Import bugfixes from upstream (equivalent to drbd-0.7-rc1).
|
|
|
|
(Replaces some previously separate patches.)
|
|
|
|
- Fix drbddisk to reply to heartbeat status inquiries correctly.
|
|
|
|
- Clean up build.
|
|
|
|
- Enable more verbose logging.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Tue May 18 2004 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Fix recalc_sigpending useage.
|
|
|
|
- Activate additional debugging useful for test harness runs.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Wed May 12 2004 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Update to drbd 0.7-pre7, bugfix release
|
2008-04-15 15:34:25 +02:00
|
|
|
* Thu Apr 29 2004 kraxel@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- one more kernel build fix, previous was incomplete :-/
|
2008-04-15 15:34:25 +02:00
|
|
|
* Wed Apr 28 2004 kraxel@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- fix kernel build failure.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Sat Apr 24 2004 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Fix random memory corruption bug.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Fri Apr 23 2004 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Update to latest CVS to fix SMP issues.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Tue Apr 06 2004 agruen@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Add missing include path (testing with Makefile.suse currently
|
|
|
|
does not catch this case).
|
2008-04-15 15:34:25 +02:00
|
|
|
* Tue Mar 30 2004 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Update to CVS-2004-03-30
|
|
|
|
- Should fix #37446
|
|
|
|
- Add new magic for km test builds if kernel-source is present.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Fri Mar 19 2004 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Update to latest CVS once more.
|
|
|
|
- Kill any files laying around from patches or CVS artifacts.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Mon Mar 15 2004 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Update to latest CVS.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Thu Mar 04 2004 kraxel@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- add olh's regparm fix.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Thu Feb 19 2004 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Upgrade to 0.7_pre5 from upstream.
|
|
|
|
- Include some hacks to test build of the km_ modules.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Tue Feb 17 2004 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Stale patch included last time.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Tue Feb 17 2004 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Fix at least the build on ppc64, x86_64 and ia64.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Mon Feb 16 2004 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Upgrade to drbd 0.7
|
|
|
|
- Reenable new & wonderful km_drbd package
|
2008-04-15 15:34:25 +02:00
|
|
|
* Mon Jan 26 2004 ro@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- comment out km_drbd package
|
2008-04-15 15:34:25 +02:00
|
|
|
* Sat Jan 10 2004 adrian@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- build as user
|
2008-04-15 15:34:25 +02:00
|
|
|
* Wed Sep 10 2003 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Fix some build failures on ppc64.
|
|
|
|
- Honor CONFIG_DEBUGSYM for UML build.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Tue Aug 26 2003 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- No longer build the ja & pt docs.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Tue Aug 19 2003 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Do apply the patch.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Mon Aug 18 2003 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Fix distribution detection.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Mon Aug 18 2003 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Added build fixes for building under UML.
|
|
|
|
- Fix for unacked count << 0.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Thu Jul 31 2003 lmb@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Upgrade to 0.6.6.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Fri Jul 25 2003 schwab@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Respect INSTALL_MOD_PATH.
|
2008-04-15 15:34:25 +02:00
|
|
|
* Wed Jun 11 2003 kukuk@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Add all directories to filelist
|
2008-04-15 15:34:25 +02:00
|
|
|
* Tue Jun 03 2003 jg@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Update to 0.6.4, changes:
|
|
|
|
- Reworked build system (i.e. better Makefiles)
|
|
|
|
- SyncAll works forward insead of backwards. Improves performance on some
|
|
|
|
storage controlers.
|
|
|
|
- Reworked /etc/init.d/drbd script (i.e. better support of different bash
|
|
|
|
releases)
|
2008-04-15 15:34:25 +02:00
|
|
|
* Wed Mar 26 2003 jg@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Update to 0.6.3, changes:
|
|
|
|
- Lockup of primary if secondary fails during resync. Fixed. (Stupid!)
|
|
|
|
- Probabely SMP only deadlock in the drop-conection code path.
|
|
|
|
- Improved connect code. (The old code could trap into a distributed
|
|
|
|
deadlock, resulting in an endless connect/disconnect loop.)
|
|
|
|
- The 'BitMap too small bug' was actually caused by a patch in
|
|
|
|
SuSE's distribution kernel. This patch makes DRBD 'more' compatible
|
|
|
|
with SuSE's kernel.
|
|
|
|
- Improved code to allocate buffers for the rsynchronisation process.
|
|
|
|
The old code allocated physical adjacent pages although the syncer
|
|
|
|
does not need them! The old code could fail under high memory pressure.
|
|
|
|
- Removed BitMap too small patch (is part of 0.6.3)
|
|
|
|
- added /etc/ha.d/resource.d/datadisk to filelist so it is possible
|
|
|
|
to install heartbeat after drbd
|
|
|
|
- removed unneeded /etc/ha.d/resource.d/drbd-control
|
2008-04-15 15:34:25 +02:00
|
|
|
* Mon Mar 17 2003 jg@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Added "BitMap too small" fix (Bug #25384)
|
2008-04-15 15:34:25 +02:00
|
|
|
* Wed Feb 12 2003 jg@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Updated to 0.6.2
|
|
|
|
- SMP fix in drbd_dio_end_sec()
|
|
|
|
- /etc/init.d/drbd knows about returncodes of fsck
|
2008-04-15 15:34:25 +02:00
|
|
|
* Tue Dec 17 2002 jg@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Moved drbdsetup from /usr/sbin to /sbin to support /usr on nfs
|
|
|
|
- Removed accidentialy included CVS directories from tar-file
|
2008-04-15 15:34:25 +02:00
|
|
|
* Wed Dec 11 2002 jg@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Updated to 0.6.1 final
|
2008-04-15 15:34:25 +02:00
|
|
|
* Mon Nov 11 2002 ro@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- changed neededforbuild <jade_dsl> to <openjade>
|
|
|
|
- changed neededforbuild <sp> to <opensp>
|
2008-04-15 15:34:25 +02:00
|
|
|
* Wed Oct 02 2002 jg@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Updated to 0.6.1-pre17, changes:
|
|
|
|
- Merged syncer speedup code by Lars G. Ellenberg
|
|
|
|
- Merged most of Lars' modifications to the ioctl interface
|
|
|
|
- Marged the bug-fixes from the lge-branch
|
|
|
|
- Implemented the TimoutCounter in the meta-data code.
|
|
|
|
- Fixed a bug that could cause lockup of the primary node on
|
|
|
|
SMP systems using a SCSI device for DRBD, it always happened
|
|
|
|
during resynchronisation. (!)
|
|
|
|
- Checking /.buildenv now in buildsystem instead of /etc/*-release
|
2008-04-15 15:34:25 +02:00
|
|
|
* Tue Sep 03 2002 jg@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Init script fixes:
|
|
|
|
- Removed abortion on non existing block devices (may
|
|
|
|
break LVM setups)
|
|
|
|
- Sourcing . /etc/rc.status earlier now
|
|
|
|
- Allowing execution via rcdrbd link
|
2008-10-27 16:44:50 +01:00
|
|
|
* Mon Sep 02 2002 jg@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Incorporated latest changes from CVS
|
|
|
|
- Using lge branch now (syncer much faster)
|
2008-04-15 15:34:25 +02:00
|
|
|
* Wed Aug 21 2002 jg@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Fixed manpage generation (should now even build on ppc64)
|
2008-04-15 15:34:25 +02:00
|
|
|
* Tue Aug 20 2002 jg@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Added PreReq tag
|
2008-04-15 15:34:25 +02:00
|
|
|
* Mon Aug 19 2002 kukuk@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- fix compilation on UL
|
2008-04-15 15:34:25 +02:00
|
|
|
* Tue Aug 13 2002 jg@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Added documentation stuff again
|
|
|
|
- Modified init script to comply with LSB
|
2008-04-15 15:34:25 +02:00
|
|
|
* Mon Aug 12 2002 jg@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Updated to latest version from CVS repository
|
|
|
|
- Removed temporary documentation path from Makefile (does
|
|
|
|
not build)
|
2008-04-15 15:34:25 +02:00
|
|
|
* Tue Mar 05 2002 jg@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- Fixed broken specfile
|
2008-04-15 15:34:25 +02:00
|
|
|
* Mon Mar 04 2002 jg@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- updated to bugfix release 0.6.1pre10
|
|
|
|
- Data-corruption bug in SyncAll fixed (was introduced in pre9)
|
|
|
|
- Fixed an OOPS in tl_check_sector() (was introduced in pre9)
|
|
|
|
- Fixed Linux-2.2.x compability (was broken in pre9)
|
|
|
|
- removed documentation patch (not needed anymore)
|
2008-04-15 15:34:25 +02:00
|
|
|
* Wed Feb 20 2002 jg@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- modified init script to honor inittimeout settings
|
2008-04-15 15:34:25 +02:00
|
|
|
* Wed Feb 20 2002 jg@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- added -include /usr/src/linux/include/linux/modversions.h
|
|
|
|
to km_drbd Makefile in case CONFIG_MODVERSIONS is set
|
|
|
|
- modified the init script to comply to LSB and to skip
|
|
|
|
the "interactive" part on boot
|
2008-04-15 15:34:25 +02:00
|
|
|
* Tue Feb 12 2002 jg@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- added -DMODVERSION and -D__SMP__ to km_drbd Makefile (according
|
|
|
|
to kernel configuration)
|
2008-04-15 15:34:25 +02:00
|
|
|
* Fri Feb 01 2002 ro@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- changed neededforbuild <libpng> to <libpng-devel-packages>
|
2008-04-15 15:34:25 +02:00
|
|
|
* Tue Jan 29 2002 jg@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- updated to 0.6.1-pre9
|
2008-04-15 15:34:25 +02:00
|
|
|
* Thu Dec 20 2001 jg@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- replaced insserv call in specfile with respective macro
|
2008-04-15 15:34:25 +02:00
|
|
|
* Wed Dec 19 2001 jg@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- updated to 0.6.1-pre7 (supports now kernel 2.4)
|
|
|
|
- removed insserv call after installing
|
|
|
|
- removed fillup template
|
|
|
|
- removed some outdated documentation files
|
2008-04-15 15:34:25 +02:00
|
|
|
* Fri Jul 27 2001 mt@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- fixed init script to be LSB compliant
|
2008-04-15 15:34:25 +02:00
|
|
|
* Fri Jul 20 2001 kukuk@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- changed neededforbuild <gs_fonts> to <ghostscript-fonts-std>
|
|
|
|
- changed neededforbuild <gs_lib> to <ghostscript-library>
|
|
|
|
- changed neededforbuild <gs_serv> to <ghostscript-serv>
|
2008-04-15 15:34:25 +02:00
|
|
|
* Sun Jan 14 2001 mt@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- added km_drbd subpackage with drbd kernel module source
|
2008-04-15 15:34:25 +02:00
|
|
|
* Fri Dec 01 2000 mt@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- added mkdir $RPM_BUILD_ROOT/sbin in spec
|
2008-04-15 15:34:25 +02:00
|
|
|
* Fri Dec 01 2000 kukuk@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- move sbin/init.d -> etc/init.d
|
2008-04-15 15:34:25 +02:00
|
|
|
* Mon Nov 27 2000 mt@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- fixed link src for rcdrbd in spec file
|
|
|
|
- changed group to Applications/Clustering
|
2008-04-15 15:34:25 +02:00
|
|
|
* Thu Nov 23 2000 mt@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- removed heartbeat from neededforbuild
|
2008-04-15 15:34:25 +02:00
|
|
|
* Wed Nov 22 2000 mt@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- changed to LSB installation of run level links
|
2008-04-15 15:34:25 +02:00
|
|
|
* Fri Nov 10 2000 mt@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- no module build in spec - drbd module is patched into the kernel
|
2008-04-15 15:34:25 +02:00
|
|
|
* Wed Nov 08 2000 mt@suse.de
|
2007-01-15 10:53:19 +01:00
|
|
|
- new package
|