Hello community,

here is the log from the commit of package yast2-instserver for 
openSUSE:Factory checked in at 2018-10-12 13:11:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/yast2-instserver (Old)
 and      /work/SRC/openSUSE:Factory/.yast2-instserver.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "yast2-instserver"

Fri Oct 12 13:11:14 2018 rev:55 rq:641282 version:4.1.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/yast2-instserver/yast2-instserver.changes        
2018-09-05 13:48:49.862285371 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-instserver.new/yast2-instserver.changes   
2018-10-12 13:11:16.807249771 +0200
@@ -1,0 +2,7 @@
+Thu Oct 11 13:33:27 UTC 2018 - [email protected]
+
+- Create the mount point directory if it does not exist yet
+  (bsc#1110037)
+- 4.1.1
+
+-------------------------------------------------------------------

Old:
----
  yast2-instserver-4.1.0.tar.bz2

New:
----
  yast2-instserver-4.1.1.tar.bz2

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

Other differences:
------------------
++++++ yast2-instserver.spec ++++++
--- /var/tmp/diff_new_pack.urDjkG/_old  2018-10-12 13:11:17.179249243 +0200
+++ /var/tmp/diff_new_pack.urDjkG/_new  2018-10-12 13:11:17.183249237 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-instserver
-Version:        4.1.0
+Version:        4.1.1
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build

++++++ yast2-instserver-4.1.0.tar.bz2 -> yast2-instserver-4.1.1.tar.bz2 ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-instserver-4.1.0/package/yast2-instserver.changes 
new/yast2-instserver-4.1.1/package/yast2-instserver.changes
--- old/yast2-instserver-4.1.0/package/yast2-instserver.changes 2018-08-23 
18:03:04.000000000 +0200
+++ new/yast2-instserver-4.1.1/package/yast2-instserver.changes 2018-10-11 
16:12:30.000000000 +0200
@@ -1,4 +1,11 @@
 -------------------------------------------------------------------
+Thu Oct 11 13:33:27 UTC 2018 - [email protected]
+
+- Create the mount point directory if it does not exist yet
+  (bsc#1110037)
+- 4.1.1
+
+-------------------------------------------------------------------
 Thu Aug 23 10:21:29 UTC 2018 - [email protected]
 
 - Update calls to YaST2 systemd classes (related to fate#319428)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-instserver-4.1.0/package/yast2-instserver.spec 
new/yast2-instserver-4.1.1/package/yast2-instserver.spec
--- old/yast2-instserver-4.1.0/package/yast2-instserver.spec    2018-08-23 
18:03:04.000000000 +0200
+++ new/yast2-instserver-4.1.1/package/yast2-instserver.spec    2018-10-11 
16:12:30.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           yast2-instserver
-Version:        4.1.0
+Version:        4.1.1
 Release:        0
 
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-instserver-4.1.0/src/include/instserver/dialogs.rb 
new/yast2-instserver-4.1.1/src/include/instserver/dialogs.rb
--- old/yast2-instserver-4.1.0/src/include/instserver/dialogs.rb        
2018-08-23 18:03:04.000000000 +0200
+++ new/yast2-instserver-4.1.1/src/include/instserver/dialogs.rb        
2018-10-11 16:12:30.000000000 +0200
@@ -1,11 +1,13 @@
 # encoding: utf-8
 
-# File:        include/instserver/dialogs.ycp
+# File:        include/instserver/dialogs.rb
 # Package:     Configuration of instserver
 # Summary:     Dialogs definitions
 # Authors:     Anas Nashif <[email protected]>
 #
-# $Id$
+
+require "fileutils"
+
 module Yast
   module InstserverDialogsInclude
     def initialize_instserver_dialogs(include_target)
@@ -343,6 +345,11 @@
           end
         end
 
+        # make sure the mount point exists
+        if !File.exist?(Installation.sourcedir)
+          ::FileUtils.mkdir_p(Installation.sourcedir)
+        end
+
         # try to mount device
         if SCR.Execute(
             path(".target.mount"),


Reply via email to