commit resource-agents for openSUSE:Factory
Hello community, here is the log from the commit of package resource-agents for openSUSE:Factory checked in at 2016-10-31 09:52:59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/resource-agents (Old) and /work/SRC/openSUSE:Factory/.resource-agents.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "resource-agents" Changes: -------- --- /work/SRC/openSUSE:Factory/resource-agents/resource-agents.changes 2016-10-10 17:28:58.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.resource-agents.new/resource-agents.changes 2016-10-31 09:53:00.000000000 +0100 @@ -1,0 +2,13 @@ +Tue Oct 18 09:29:39 UTC 2016 - kgronlund@suse.com + +- Update to version 3.9.7+git.1475827855.a95ea74: + * High: nfsserver: Delete the temp file correctly. + * Low: nfsserver: Prevent unnecessary log output + +------------------------------------------------------------------- +Tue Oct 18 09:27:32 UTC 2016 - kgronlund@suse.com + +- Revert send_arp to libnet version (bsc#985486) + * For infiniband support in IPaddr2, install ipoibtools + +------------------------------------------------------------------- Old: ---- resource-agents-3.9.7+git.1475676827.4af1003.tar.xz New: ---- resource-agents-3.9.7+git.1475827855.a95ea74.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ resource-agents.spec ++++++ --- /var/tmp/diff_new_pack.xf7Afy/_old 2016-10-31 09:53:01.000000000 +0100 +++ /var/tmp/diff_new_pack.xf7Afy/_new 2016-10-31 09:53:01.000000000 +0100 @@ -17,7 +17,7 @@ Name: resource-agents -Version: 3.9.7+git.1475676827.4af1003 +Version: 3.9.7+git.1475827855.a95ea74 Release: 0 Summary: Open Source HA Reusable Cluster Resource Scripts License: GPL-2.0 and LGPL-2.1+ and GPL-3.0+ @@ -112,8 +112,7 @@ --enable-fatal-warnings=no \ --with-systemdsystemunitdir=%{_unitdir} \ \ --with-pkg-name=%{name} \ - --with-rsctmpdir=%{_rundir}/%{name} \ - --enable-libnet=no + --with-rsctmpdir=%{_rundir}/%{name} make %{?_smp_mflags} %install ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.xf7Afy/_old 2016-10-31 09:53:02.000000000 +0100 +++ /var/tmp/diff_new_pack.xf7Afy/_new 2016-10-31 09:53:02.000000000 +0100 @@ -1,4 +1,4 @@ <servicedata> <service name="tar_scm"> <param name="url">git://github.com/ClusterLabs/resource-agents.git</param> - <param name="changesrevision">e1ac560cdf37dca96b84babae11172eb9d8538ed</param></service></servicedata> \ No newline at end of file + <param name="changesrevision">a95ea74ce7bbe721f8f063c6de3af9161e0d713a</param></service></servicedata> \ No newline at end of file ++++++ resource-agents-3.9.7+git.1475676827.4af1003.tar.xz -> resource-agents-3.9.7+git.1475827855.a95ea74.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/resource-agents-3.9.7+git.1475676827.4af1003/heartbeat/nfsserver new/resource-agents-3.9.7+git.1475827855.a95ea74/heartbeat/nfsserver --- old/resource-agents-3.9.7+git.1475676827.4af1003/heartbeat/nfsserver 2016-10-05 16:13:47.000000000 +0200 +++ new/resource-agents-3.9.7+git.1475827855.a95ea74/heartbeat/nfsserver 2016-10-07 10:10:55.000000000 +0200 @@ -310,8 +310,9 @@ { local threads_num local rc + local fn - ocf_log info "Status: rpcbind" + ocf_log debug "Status: rpcbind" rpcinfo > /dev/null 2>&1 rc=$? if [ "$rc" -ne "0" ]; then @@ -319,7 +320,7 @@ return $OCF_NOT_RUNNING fi - ocf_log info "Status: nfs-mountd" + ocf_log debug "Status: nfs-mountd" rpcinfo -t localhost 100005 > /dev/null 2>&1 rc=$? if [ "$rc" -ne "0" ]; then @@ -327,7 +328,7 @@ return $OCF_NOT_RUNNING fi - ocf_log info "Status: nfs-idmapd" + ocf_log debug "Status: nfs-idmapd" fn=`mktemp` nfs_exec status nfs-idmapd > $fn 2>&1 rc=$? @@ -338,7 +339,7 @@ return $OCF_NOT_RUNNING fi - ocf_log info "Status: rpc-statd" + ocf_log debug "Status: rpc-statd" rpcinfo -t localhost 100024 > /dev/null 2>&1 rc=$? if [ "$rc" -ne "0" ]; then @@ -371,6 +372,8 @@ nfsserver_monitor () { + local fn + set_exec_mode fn=`mktemp` case $EXEC_MODE in @@ -603,6 +606,7 @@ nfsserver_start () { local rc; + local fn if nfsserver_monitor; then ocf_log debug "NFS server is already started" @@ -731,6 +735,8 @@ nfsserver_stop () { + local fn + ocf_log info "Stopping NFS server ..." # backup the current sm state information to the ha folder before stopping.
participants (1)
-
root@hilbert.suse.de