Hello community,

here is the log from the commit of package yast2-users for openSUSE:Factory 
checked in at 2016-05-26 23:53:56
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-users (Old)
 and      /work/SRC/openSUSE:Factory/.yast2-users.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-users"

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-users/yast2-users.changes  2016-05-10 
09:26:08.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-users.new/yast2-users.changes     
2016-05-26 23:53:57.000000000 +0200
@@ -1,0 +2,14 @@
+Mon May 23 15:36:01 UTC 2016 - igonzalezs...@suse.com
+
+- Fix a string concatenation in Users.pm relative introduced in
+  bsc#980878.
+- 3.1.51
+
+-------------------------------------------------------------------
+Mon May 23 08:08:58 UTC 2016 - igonzalezs...@suse.com
+
+- Fix detection of mounted /home partition during installation
+  (bsc#980878)
+- 3.1.50
+
+-------------------------------------------------------------------

Old:
----
  yast2-users-3.1.49.tar.bz2

New:
----
  yast2-users-3.1.51.tar.bz2

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

Other differences:
------------------
++++++ yast2-users.spec ++++++
--- /var/tmp/diff_new_pack.q2Iz2Q/_old  2016-05-26 23:53:58.000000000 +0200
+++ /var/tmp/diff_new_pack.q2Iz2Q/_new  2016-05-26 23:53:58.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-users
-Version:        3.1.49
+Version:        3.1.51
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build

++++++ yast2-users-3.1.49.tar.bz2 -> yast2-users-3.1.51.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-users-3.1.49/package/yast2-users.changes 
new/yast2-users-3.1.51/package/yast2-users.changes
--- old/yast2-users-3.1.49/package/yast2-users.changes  2016-05-05 
17:34:04.000000000 +0200
+++ new/yast2-users-3.1.51/package/yast2-users.changes  2016-05-24 
09:30:43.000000000 +0200
@@ -1,4 +1,18 @@
 -------------------------------------------------------------------
+Mon May 23 15:36:01 UTC 2016 - igonzalezs...@suse.com
+
+- Fix a string concatenation in Users.pm relative introduced in
+  bsc#980878.
+- 3.1.51
+
+-------------------------------------------------------------------
+Mon May 23 08:08:58 UTC 2016 - igonzalezs...@suse.com
+
+- Fix detection of mounted /home partition during installation
+  (bsc#980878)
+- 3.1.50
+
+-------------------------------------------------------------------
 Thu May  5 13:22:29 UTC 2016 - an...@suse.com
 
 - Make user import work even if passwd and shadow files are not
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-users-3.1.49/package/yast2-users.spec 
new/yast2-users-3.1.51/package/yast2-users.spec
--- old/yast2-users-3.1.49/package/yast2-users.spec     2016-05-05 
17:34:04.000000000 +0200
+++ new/yast2-users-3.1.51/package/yast2-users.spec     2016-05-24 
09:30:43.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-users
-Version:        3.1.49
+Version:        3.1.51
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-users-3.1.49/src/modules/Users.pm 
new/yast2-users-3.1.51/src/modules/Users.pm
--- old/yast2-users-3.1.49/src/modules/Users.pm 2016-05-05 17:34:04.000000000 
+0200
+++ new/yast2-users-3.1.51/src/modules/Users.pm 2016-05-24 09:30:43.000000000 
+0200
@@ -224,6 +224,7 @@
 YaST::YCP::Import ("FileUtils");
 YaST::YCP::Import ("Ldap");
 YaST::YCP::Import ("Linuxrc");
+YaST::YCP::Import ("Installation");
 YaST::YCP::Import ("MailAliases");
 YaST::YCP::Import ("Message");
 YaST::YCP::Import ("Mode");
@@ -698,12 +699,17 @@
     }
 
     if ($mountpoint_in ne "") {
+        my $home_mountpoint = $home;
+        if (Stage->initial()) {
+            $home_mountpoint = Installation->destdir() . $home_mountpoint;
+        }
+        y2milestone("homes mount point is", $home_mountpoint);
         my $mounted    = 0;
         my $mtab       = SCR->Read (".etc.mtab");
        if (defined $mtab && ref ($mtab) eq "ARRAY") {
            foreach my $line (@{$mtab}) {
                my %line        = %{$line};
-               if ($line{"file"} eq $home) {
+               if ($line{"file"} eq $home_mountpoint) {
                    $mounted = 1;
                }
            }


Reply via email to