Hello community, here is the log from the commit of package openais for openSUSE:Factory checked in at Wed Sep 21 17:13:18 CEST 2011.
-------- --- openais/openais.changes 2011-08-05 08:41:58.000000000 +0200 +++ /mounts/work_src_done/STABLE/openais/openais.changes 2011-09-20 16:12:38.000000000 +0200 @@ -1,0 +2,8 @@ +Tue Sep 20 14:10:24 UTC 2011 - [email protected] + +- init script: support multiple devices in /etc/sysconfig/sbd + (bnc#682634, fate#309375) +- init script: libvirtd may be needed at shutdown time (bnc#641586) +- Remove stray message from init script. + +------------------------------------------------------------------- calling whatdependson for head-i586 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ openais.spec ++++++ --- /var/tmp/diff_new_pack.tLrsqK/_old 2011-09-21 17:13:13.000000000 +0200 +++ /var/tmp/diff_new_pack.tLrsqK/_new 2011-09-21 17:13:13.000000000 +0200 @@ -23,7 +23,7 @@ Name: openais Summary: The OpenAIS Standards-Based Cluster Framework executive and APIs Version: 1.1.4 -Release: 6 +Release: 7 License: BSD3c Group: Productivity/Clustering/HA Url: http://www.openais.org/ ++++++ openais-suse-init.patch ++++++ --- /var/tmp/diff_new_pack.tLrsqK/_old 2011-09-21 17:13:13.000000000 +0200 +++ /var/tmp/diff_new_pack.tLrsqK/_new 2011-09-21 17:13:13.000000000 +0200 @@ -15,7 +15,7 @@ =================================================================== --- /dev/null +++ openais-1.1.4/init/suse -@@ -0,0 +1,205 @@ +@@ -0,0 +1,208 @@ +#!/bin/bash +# +# Corosync daemon init script for LSB-compliant Linux distributions. @@ -32,11 +32,11 @@ +# Short-Description: openais cluster services. +# Provides: openais +# Required-Start: $network -+# Should-Start: $syslog sshd drbd $named $remote_fs logd xendomains xend iscsi ++# Should-Start: $syslog sshd drbd $named $remote_fs logd xendomains xend iscsi libvirtd +# Required-Stop: $network +# Default-Start: 3 5 +# Default-Stop: 0 6 -+# Should-Stop: $syslog sshd drbd $named $remote_fs logd xendomains xend iscsi ++# Should-Stop: $syslog sshd drbd $named $remote_fs logd xendomains xend iscsi libvirtd +### END INIT INFO + +do_force=0 @@ -61,10 +61,13 @@ + +[ -x "$exec" ] || exit 0 + ++SBD_DEVS=${SBD_DEVICE%;} ++SBD_DEVICE=${SBD_DEVS//;/ -d } ++ +StartSBD() { + test -x $SBD_BIN || return + if [ -n "$SBD_DEVICE" ]; then -+ if ! pidofproc $SBD_BIN ; then ++ if ! pidofproc $SBD_BIN >/dev/null 2>&1 ; then + echo -n "Starting SBD - " + if ! $SBD_BIN -d $SBD_DEVICE -D $SBD_OPTS watch ; then + echo "SBD failed to start; aborting." @@ -83,7 +86,7 @@ + exit 1 + fi + fi -+ while pidofproc $SBD_BIN ; do ++ while pidofproc $SBD_BIN >/dev/null 2>&1 ; do + sleep 1 + done + echo -n "done " ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Remember to have fun... -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
