Hello community,

here is the log from the commit of package yast2-multipath for 
openSUSE:Leap:15.2 checked in at 2020-02-04 17:53:47
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/yast2-multipath (Old)
 and      /work/SRC/openSUSE:Leap:15.2/.yast2-multipath.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-multipath"

Tue Feb  4 17:53:47 2020 rev:20 rq:766285 version:4.2.1

Changes:
--------
--- /work/SRC/openSUSE:Leap:15.2/yast2-multipath/yast2-multipath.changes        
2020-01-15 16:32:14.712880816 +0100
+++ 
/work/SRC/openSUSE:Leap:15.2/.yast2-multipath.new.26092/yast2-multipath.changes 
    2020-02-04 17:54:07.760738760 +0100
@@ -1,0 +2,7 @@
+Wed Jan 15 12:56:13 UTC 2020 - Josef Reidinger <jreidin...@suse.com>
+
+- replace old init.d compat symlinks usage by direct calling
+  systemctl (jsc#SLE-10976)
+- 4.2.1
+
+-------------------------------------------------------------------

Old:
----
  yast2-multipath-4.2.0.tar.bz2

New:
----
  yast2-multipath-4.2.1.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ yast2-multipath.spec ++++++
--- /var/tmp/diff_new_pack.S6nSMH/_old  2020-02-04 17:54:08.268739066 +0100
+++ /var/tmp/diff_new_pack.S6nSMH/_new  2020-02-04 17:54:08.268739066 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-multipath
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-multipath
-Version:        4.2.0
+Version:        4.2.1
 Release:        0
 Summary:        YaST2 - Multipath Configuration
 License:        GPL-2.0-or-later

++++++ yast2-multipath-4.2.0.tar.bz2 -> yast2-multipath-4.2.1.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-multipath-4.2.0/package/yast2-multipath.changes 
new/yast2-multipath-4.2.1/package/yast2-multipath.changes
--- old/yast2-multipath-4.2.0/package/yast2-multipath.changes   2019-06-04 
08:27:00.000000000 +0200
+++ new/yast2-multipath-4.2.1/package/yast2-multipath.changes   2020-01-15 
14:41:14.000000000 +0100
@@ -1,4 +1,11 @@
 -------------------------------------------------------------------
+Wed Jan 15 12:56:13 UTC 2020 - Josef Reidinger <jreidin...@suse.com>
+
+- replace old init.d compat symlinks usage by direct calling
+  systemctl (jsc#SLE-10976)
+- 4.2.1
+
+-------------------------------------------------------------------
 Fri May 31 12:33:54 UTC 2019 - Stasiek Michalski <hel...@mailbox.org>
 
 - Add metainfo (fate#319035)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-multipath-4.2.0/package/yast2-multipath.spec 
new/yast2-multipath-4.2.1/package/yast2-multipath.spec
--- old/yast2-multipath-4.2.0/package/yast2-multipath.spec      2019-06-04 
08:27:00.000000000 +0200
+++ new/yast2-multipath-4.2.1/package/yast2-multipath.spec      2020-01-15 
14:41:14.000000000 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-multipath
-Version:        4.2.0
+Version:        4.2.1
 Release:        0
 Summary:        YaST2 - Multipath Configuration
 License:        GPL-2.0-or-later
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-multipath-4.2.0/src/modules/Multipath.rb 
new/yast2-multipath-4.2.1/src/modules/Multipath.rb
--- old/yast2-multipath-4.2.0/src/modules/Multipath.rb  2019-06-04 
08:27:00.000000000 +0200
+++ new/yast2-multipath-4.2.1/src/modules/Multipath.rb  2020-01-15 
14:41:14.000000000 +0100
@@ -216,9 +216,7 @@
 
       # read multipath service status
       if Mode.normal && Stage.normal
-        @service_status = Convert.to_integer(
-          SCR.Execute(path(".target.bash"), "/etc/init.d/multipathd status")
-        )
+        @service_status = SCR.Execute(path(".target.bash"), 
"/usr/bin/systemctl status multipathd")
         @service_status = 1 if Ops.greater_than(@service_status, 0)
       else
         @service_status = Convert.to_integer(
@@ -305,7 +303,7 @@
           if 0 !=
               SCR.Execute(
                 path(".target.bash"),
-                "service multipathd restart"
+                "/usr/bin/systemctl restart multipathd"
               )
             Report.Error(_("Restarting multipathd failed."))
             return false
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-multipath-4.2.0/testsuite/Makefile.am 
new/yast2-multipath-4.2.1/testsuite/Makefile.am
--- old/yast2-multipath-4.2.0/testsuite/Makefile.am     2019-06-04 
08:27:00.000000000 +0200
+++ new/yast2-multipath-4.2.1/testsuite/Makefile.am     1970-01-01 
01:00:00.000000000 +0100
@@ -1,21 +0,0 @@
-#
-# Makefile.am for .../testsuite
-#
-# Do not edit this file (Makefile.am) as it will be overwritten!
-#
-
-AUTOMAKE_OPTIONS = dejagnu
-EXTRA_DIST = $(wildcard tests/*.out) $(wildcard tests/*.err) $(wildcard 
tests/*.rb)
-
-testsuite_prepare = @ydatadir@/testsuite/Makefile.testsuite
-
-all-local: $(testsuite_prepare)
-       make -f $(testsuite_prepare) RPMNAME=$(RPMNAME) srcdir=$(srcdir)
-
-clean-local: $(testsuite_prepare)
-       make -f $(testsuite_prepare) RPMNAME=$(RPMNAME) srcdir=$(srcdir) clean
-
-check-local: $(testsuite_prepare)
-       make -f $(testsuite_prepare) RPMNAME=$(RPMNAME) srcdir=$(srcdir) check
-
-# EOF
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-multipath-4.2.0/testsuite/tests/ag_multipath_testdata1.out 
new/yast2-multipath-4.2.1/testsuite/tests/ag_multipath_testdata1.out
--- old/yast2-multipath-4.2.0/testsuite/tests/ag_multipath_testdata1.out        
2019-06-04 08:27:00.000000000 +0200
+++ new/yast2-multipath-4.2.1/testsuite/tests/ag_multipath_testdata1.out        
1970-01-01 01:00:00.000000000 +0100
@@ -1,52 +0,0 @@
-mpath2 (3600601607cf30e00184589a37a31d911) DGC,DISK
-[size=127G][features=1 queue_if_no_path][hwhandler=1 emc]
-\_ round-robin 0 [prio=0][active]
- \_ 0:0:0:2  sdc 8:32  [active][undef]
-mpath1 (3600601607cf30e00174589a37a31d911) DGC,DISK
-[size=127G][features=1 queue_if_no_path][hwhandler=1 emc]
-\_ round-robin 0 [prio=0][active]
- \_ 0:0:0:1  sdb 8:16  [active][undef]
-mpath0 (3600601607cf30e00164589a37a31d911) DGC,DISK
-[size=127G][features=1 queue_if_no_path][hwhandler=1 emc]
-\_ round-robin 0 [prio=0][active]
- \_ 0:0:0:0  sda 8:0   [active][undef]
-mpath9 (3600601607cf30e006daf8bb37a31d911) DGC,DISK
-[size=133G][features=1 queue_if_no_path][hwhandler=1 emc]
-\_ round-robin 0 [prio=0][active]
- \_ 0:0:0:9  sdj 8:144 [active][undef]
-mpath8 (3600601607cf30e006caf8bb37a31d911) DGC,DISK
-[size=133G][features=1 queue_if_no_path][hwhandler=1 emc]
-\_ round-robin 0 [prio=0][active]
- \_ 0:0:0:8  sdi 8:128 [active][undef]
-mpath7 (3600601607cf30e001d4589a37a31d911) DGC,DISK
-[size=133G][features=1 queue_if_no_path][hwhandler=1 emc]
-\_ round-robin 0 [prio=0][active]
- \_ 0:0:0:7  sdh 8:112 [active][undef]
-mpath6 (3600601607cf30e001c4589a37a31d911) DGC,DISK
-[size=133G][features=1 queue_if_no_path][hwhandler=1 emc]
-\_ round-robin 0 [prio=0][active]
- \_ 0:0:0:6  sdg 8:96  [active][undef]
-mpath12 (3600601607cf30e0070af8bb37a31d911) DGC,DISK
-[size=133G][features=1 queue_if_no_path][hwhandler=1 emc]
-\_ round-robin 0 [prio=0][active]
- \_ 0:0:0:12 sdm 8:192 [active][undef]
-mpath5 (3600601607cf30e001b4589a37a31d911) DGC,DISK
-[size=133G][features=1 queue_if_no_path][hwhandler=1 emc]
-\_ round-robin 0 [prio=0][active]
- \_ 0:0:0:5  sdf 8:80  [active][undef]
-mpath11 (3600601607cf30e006faf8bb37a31d911) DGC,DISK
-[size=133G][features=1 queue_if_no_path][hwhandler=1 emc]
-\_ round-robin 0 [prio=0][active]
- \_ 0:0:0:11 sdl 8:176 [active][undef]
-mpath4 (3600601607cf30e001a4589a37a31d911) DGC,DISK
-[size=127G][features=1 queue_if_no_path][hwhandler=1 emc]
-\_ round-robin 0 [prio=0][active]
- \_ 0:0:0:4  sde 8:64  [active][undef]
-mpath10 (3600601607cf30e006eaf8bb37a31d911) DGC,DISK
-[size=133G][features=1 queue_if_no_path][hwhandler=1 emc]
-\_ round-robin 0 [prio=0][active]
- \_ 0:0:0:10 sdk 8:160 [active][undef]
-mpath3 (3600601607cf30e00194589a37a31d911) DGC,DISK
-[size=127G][features=1 queue_if_no_path][hwhandler=1 emc]
-\_ round-robin 0 [prio=0][enabled]
- \_ 0:0:0:3  sdd 8:48  [active][undef]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-multipath-4.2.0/testsuite/tests/ag_multipath_testdata2.out 
new/yast2-multipath-4.2.1/testsuite/tests/ag_multipath_testdata2.out
--- old/yast2-multipath-4.2.0/testsuite/tests/ag_multipath_testdata2.out        
2019-06-04 08:27:00.000000000 +0200
+++ new/yast2-multipath-4.2.1/testsuite/tests/ag_multipath_testdata2.out        
1970-01-01 01:00:00.000000000 +0100
@@ -1,8 +0,0 @@
-3600601607cf30e00194589a37a31d911DGC,DISK
-[size=127G][features=1 queue_if_no_path][hwhandler=1 emc]
-\_ round-robin 0 [prio=0][active]
- \_ 0:0:0:3  sdd 8:48  [active][undef]
-3600601607cf30e006eaf8bb37a31d911DGC,DISK
-[size=133G][features=1 queue_if_no_path][hwhandler=1 emc]
-\_ round-robin 0 [prio=0][active]
- \_ 0:0:0:10 sdk 8:160 [active][undef]


Reply via email to