All of lore.kernel.org
 help / color / mirror / Atom feed
* [DRBD-announce] drbd-8.0pre5.tar.gz
@ 2006-10-02  9:14 Philipp Reisner
  2006-10-02 10:44 ` [Drbd-dev] " Cyril Bouthors
  0 siblings, 1 reply; 5+ messages in thread
From: Philipp Reisner @ 2006-10-02  9:14 UTC (permalink / raw)
  To: drbd-announce

The good news are: pre5 is much more stable and usable than any other 8.0 
prerelease before.

8.0pre5 (api:84/proto:83)
--------
 * The request code was completely rewritten.
 * The write conflict detection code for primary-primary is currently
   broken, but will be fixed soon.
 * drbdsetup is no longer based on IOCTL but works now via 
   netlink/connector.
 * drbd_panic() is on its way out.
 * A runtime configurable tracing framework got added.
 * A lot of effort was put into finding and fixing bugs.

http://oss.linbit.com/drbd/8.0/drbd-8.0pre5.tar.gz
http://svn.drbd.org/drbd/tags/drbd-8.0pre5/

Happy testing, happy early-adoping ;)

-Philipp
-- 
: Dipl-Ing Philipp Reisner                      Tel +43-1-8178292-50 :
: LINBIT Information Technologies GmbH          Fax +43-1-8178292-82 :
: Schönbrunnerstr 244, 1120 Vienna, Austria    http://www.linbit.com :

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [Drbd-dev] Re: [DRBD-announce] drbd-8.0pre5.tar.gz
  2006-10-02  9:14 [DRBD-announce] drbd-8.0pre5.tar.gz Philipp Reisner
@ 2006-10-02 10:44 ` Cyril Bouthors
  2006-10-02 12:59   ` Philipp Reisner
  0 siblings, 1 reply; 5+ messages in thread
From: Cyril Bouthors @ 2006-10-02 10:44 UTC (permalink / raw)
  To: drbd-dev

[-- Attachment #1: Type: text/plain, Size: 2500 bytes --]

On  2 Oct 2006, philipp.reisner@linbit.com wrote:

> The good news are: pre5 is much more stable and usable than any other 8.0 
> prerelease before.
>
> 8.0pre5 (api:84/proto:83)
> --------
> * The request code was completely rewritten.
> * The write conflict detection code for primary-primary is currently
> broken, but will be fixed soon.
> * drbdsetup is no longer based on IOCTL but works now via 
> netlink/connector.
> * drbd_panic() is on its way out.
> * A runtime configurable tracing framework got added.
> * A lot of effort was put into finding and fixing bugs.
>
> http://oss.linbit.com/drbd/8.0/drbd-8.0pre5.tar.gz
> http://svn.drbd.org/drbd/tags/drbd-8.0pre5/
>
> Happy testing, happy early-adoping ;)
>
> -Philipp

This version provoques the following warnings with the latest lintian
(the Debian package checker):

Now running lintian...
W: drbd8-utils: init.d-script-missing-lsb-keyword /etc/init.d/drbd short-description
W: drbd8-utils: init.d-script-missing-lsb-keyword /etc/init.d/drbd required-stop
Finished running lintian.

I've fixed this with this patch:

--- drbd8-8.0pre5.orig/scripts/drbd
+++ drbd8-8.0pre5/scripts/drbd
@@ -10,10 +10,10 @@
 ### BEGIN INIT INFO
 # Provides: drbd
 # Required-Start: $network $syslog sshd
-# Required-Stop:
+# Required-Stop: $network $syslog sshd
 # Default-Start:  3 5
 # Default-Stop:   0 1 2 6
-# Description:    Control drbd resources.
+# Short-Description:    Control drbd resources.
 ### END INIT INFO
 
 DEFAULTFILE="/etc/default/drbd"


Please apply this patch is the next release.

For more information, have a look at
http://wiki.debian.org/LSBInitScripts/


By the way, the Debian package [1] still ships this second patch to
the initscript because some users needed it:

--- drbd-0.7.10.orig/scripts/drbd	2005-01-13 17:30:28.000000000 +0300
+++ drbd-0.7.10/scripts/drbd	2005-04-17 18:18:16.166074586 +0300
@@ -19,8 +19,8 @@
 DEFAULTFILE="/etc/default/drbd"
 DRBDADM="/sbin/drbdadm"
 PROC_DRBD="/proc/drbd"
-MODPROBE="modprobe"
-RMMOD="rmmod"
+MODPROBE="/sbin/modprobe"
+RMMOD="/sbin/rmmod"
 UDEV_TIMEOUT=10
 ADD_MOD_PARAM=""

Would it be possible to commit them both into SVN?

Have a look at http://bugs.debian.org/302556 and
http://bugs.debian.org/303060 for more information.

Thanks.

PS: I've uploaded 8.0pre5 to Debian/sid.

[1] the official one, to avoid confusions
-- 
 ,''`.
: :' :      Cyril Bouthors
`. `'         Debian.org
  `-

[-- Attachment #2: Type: application/pgp-signature, Size: 188 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Drbd-dev] Re: [DRBD-announce] drbd-8.0pre5.tar.gz
  2006-10-02 10:44 ` [Drbd-dev] " Cyril Bouthors
@ 2006-10-02 12:59   ` Philipp Reisner
  2006-10-24 17:11     ` Cyril Bouthors
  0 siblings, 1 reply; 5+ messages in thread
From: Philipp Reisner @ 2006-10-02 12:59 UTC (permalink / raw)
  To: drbd-dev

> --- drbd8-8.0pre5.orig/scripts/drbd
> +++ drbd8-8.0pre5/scripts/drbd
> @@ -10,10 +10,10 @@
>  ### BEGIN INIT INFO
>  # Provides: drbd
>  # Required-Start: $network $syslog sshd
> -# Required-Stop:
> +# Required-Stop: $network $syslog sshd
>  # Default-Start:  3 5
>  # Default-Stop:   0 1 2 6
> -# Description:    Control drbd resources.
> +# Short-Description:    Control drbd resources.
>  ### END INIT INFO
>
[...]

> --- drbd-0.7.10.orig/scripts/drbd	2005-01-13 17:30:28.000000000 +0300
> +++ drbd-0.7.10/scripts/drbd	2005-04-17 18:18:16.166074586 +0300
> @@ -19,8 +19,8 @@
>  DEFAULTFILE="/etc/default/drbd"
>  DRBDADM="/sbin/drbdadm"
>  PROC_DRBD="/proc/drbd"
> -MODPROBE="modprobe"
> -RMMOD="rmmod"
> +MODPROBE="/sbin/modprobe"
> +RMMOD="/sbin/rmmod"
>  UDEV_TIMEOUT=10
>  ADD_MOD_PARAM=""
>
> Would it be possible to commit them both into SVN?
>

Applied both paches.

-Phil
-- 
: Dipl-Ing Philipp Reisner                      Tel +43-1-8178292-50 :
: LINBIT Information Technologies GmbH          Fax +43-1-8178292-82 :
: Schönbrunnerstr 244, 1120 Vienna, Austria    http://www.linbit.com :

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Drbd-dev] Re: [DRBD-announce] drbd-8.0pre5.tar.gz
  2006-10-02 12:59   ` Philipp Reisner
@ 2006-10-24 17:11     ` Cyril Bouthors
  2006-10-24 18:45       ` Lars Ellenberg
  0 siblings, 1 reply; 5+ messages in thread
From: Cyril Bouthors @ 2006-10-24 17:11 UTC (permalink / raw)
  To: drbd-dev

[-- Attachment #1: Type: text/plain, Size: 397 bytes --]

On  2 Oct 2006, philipp.reisner@linbit.com wrote:

> Applied both paches.

Still the same with 0.7.22:

Now running lintian...
W: drbd0.7-utils: init.d-script-missing-lsb-keyword /etc/init.d/drbd short-description
W: drbd0.7-utils: init.d-script-missing-lsb-keyword /etc/init.d/drbd required-stop
Finished running lintian.

Are you sure you've applied my patches?
-- 
Cyril Bouthors

[-- Attachment #2: Type: application/pgp-signature, Size: 188 bytes --]

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [Drbd-dev] Re: [DRBD-announce] drbd-8.0pre5.tar.gz
  2006-10-24 17:11     ` Cyril Bouthors
@ 2006-10-24 18:45       ` Lars Ellenberg
  0 siblings, 0 replies; 5+ messages in thread
From: Lars Ellenberg @ 2006-10-24 18:45 UTC (permalink / raw)
  To: drbd-dev

/ 2006-10-24 20:11:09 +0300
\ Cyril Bouthors:
> On  2 Oct 2006, philipp.reisner@linbit.com wrote:
> 
> > Applied both paches.
> 
> Still the same with 0.7.22:
> 
> Now running lintian...
> W: drbd0.7-utils: init.d-script-missing-lsb-keyword /etc/init.d/drbd short-description
> W: drbd0.7-utils: init.d-script-missing-lsb-keyword /etc/init.d/drbd required-stop
> Finished running lintian.
> 
> Are you sure you've applied my patches?

probably not in 0.7.
so what.


-- 
: Lars Ellenberg                                  Tel +43-1-8178292-55 :
: LINBIT Information Technologies GmbH            Fax +43-1-8178292-82 :
: Schoenbrunner Str. 244, A-1120 Vienna/Europe   http://www.linbit.com :

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2006-10-24 18:45 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-10-02  9:14 [DRBD-announce] drbd-8.0pre5.tar.gz Philipp Reisner
2006-10-02 10:44 ` [Drbd-dev] " Cyril Bouthors
2006-10-02 12:59   ` Philipp Reisner
2006-10-24 17:11     ` Cyril Bouthors
2006-10-24 18:45       ` Lars Ellenberg

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.