Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package jeos-firstboot for openSUSE:Factory 
checked in at 2022-03-18 16:41:36
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/jeos-firstboot (Old)
 and      /work/SRC/openSUSE:Factory/.jeos-firstboot.new.25692 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "jeos-firstboot"

Fri Mar 18 16:41:36 2022 rev:43 rq:962239 version:1.1.1.1

Changes:
--------
--- /work/SRC/openSUSE:Factory/jeos-firstboot/jeos-firstboot.changes    
2022-02-18 23:02:52.625413151 +0100
+++ /work/SRC/openSUSE:Factory/.jeos-firstboot.new.25692/jeos-firstboot.changes 
2022-03-18 16:41:44.837164620 +0100
@@ -1,0 +2,8 @@
+Wed Mar 16 15:04:42 UTC 2022 - Fabian Vogt <fv...@suse.com>
+
+- Update to version 1.1.1.1:
+  * Quick'n'dirty NetworkManager support
+- Switch git URL to https
+- Require NetworkManager or wicked
+
+-------------------------------------------------------------------

Old:
----
  jeos-firstboot-1.1.1.0.obscpio

New:
----
  jeos-firstboot-1.1.1.1.obscpio

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

Other differences:
------------------
++++++ jeos-firstboot.spec ++++++
--- /var/tmp/diff_new_pack.zNTQbE/_old  2022-03-18 16:41:45.457165064 +0100
+++ /var/tmp/diff_new_pack.zNTQbE/_new  2022-03-18 16:41:45.461165067 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           jeos-firstboot
-Version:        1.1.1.0
+Version:        1.1.1.1
 Release:        0
 Summary:        Simple text based JeOS first boot wizard
 License:        MIT
@@ -29,7 +29,7 @@
 Requires:       iproute2
 Requires:       live-langset-data
 Requires:       timezone
-Requires:       wicked
+Requires:       (NetworkManager or wicked)
 BuildArch:      noarch
 %{?systemd_requires}
 

++++++ _service ++++++
--- /var/tmp/diff_new_pack.zNTQbE/_old  2022-03-18 16:41:45.493165090 +0100
+++ /var/tmp/diff_new_pack.zNTQbE/_new  2022-03-18 16:41:45.497165093 +0100
@@ -1,6 +1,6 @@
 <services>
   <service name="obs_scm" mode="disabled">
-    <param name="url">git://github.com/openSUSE/jeos-firstboot.git</param>
+    <param name="url">https://github.com/openSUSE/jeos-firstboot.git</param>
     <param name="scm">git</param>
     <param name="versionformat">@PARENT_TAG@.@TAG_OFFSET@</param>
     <param name="versionrewrite-pattern">v(.*)</param>

++++++ _servicedata ++++++
--- /var/tmp/diff_new_pack.zNTQbE/_old  2022-03-18 16:41:45.517165107 +0100
+++ /var/tmp/diff_new_pack.zNTQbE/_new  2022-03-18 16:41:45.521165110 +0100
@@ -1,6 +1,6 @@
 <servicedata>
 <service name="tar_scm">
-                <param 
name="url">git://github.com/openSUSE/jeos-firstboot.git</param>
-              <param 
name="changesrevision">ab6c8a7fac1ce770a6bb522ba6c997c56da3f756</param></service></servicedata>
+                <param 
name="url">https://github.com/openSUSE/jeos-firstboot.git</param>
+              <param 
name="changesrevision">e0ae3fee933953e5f6c2c52fff95ac253ba8e315</param></service></servicedata>
 (No newline at EOF)
 

++++++ jeos-firstboot-1.1.1.0.obscpio -> jeos-firstboot-1.1.1.1.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/jeos-firstboot-1.1.1.0/files/usr/sbin/jeos-config 
new/jeos-firstboot-1.1.1.1/files/usr/sbin/jeos-config
--- old/jeos-firstboot-1.1.1.0/files/usr/sbin/jeos-config       2022-02-17 
15:53:31.000000000 +0100
+++ new/jeos-firstboot-1.1.1.1/files/usr/sbin/jeos-config       2022-03-16 
15:55:07.000000000 +0100
@@ -125,6 +125,11 @@
                timedatectl set-timezone "$JEOS_TIMEZONE"
                ;;      
        network)
+               if [ "$(current_network_service)" = "NetworkManager" ]; then
+                       nmtui
+                       exit 0
+               fi
+
                if ! d --yesno $"This will create a new network configuration 
from scratch,
 all connections will be lost.\nDo you want to continue?" 7 50; then
                        exit 0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/jeos-firstboot-1.1.1.0/files/usr/sbin/jeos-firstboot 
new/jeos-firstboot-1.1.1.1/files/usr/sbin/jeos-firstboot
--- old/jeos-firstboot-1.1.1.0/files/usr/sbin/jeos-firstboot    2022-02-17 
15:53:31.000000000 +0100
+++ new/jeos-firstboot-1.1.1.1/files/usr/sbin/jeos-firstboot    2022-03-16 
15:55:07.000000000 +0100
@@ -216,7 +216,9 @@
 fi
 
 ## Configure initial network settings
-dialog_network
+if [ "$(current_network_service)" != "NetworkManager" ]; then
+       dialog_network
+fi
 
 call_module_hook systemd_firstboot
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/jeos-firstboot-1.1.1.0/files/usr/share/jeos-firstboot/jeos-firstboot-functions
 
new/jeos-firstboot-1.1.1.1/files/usr/share/jeos-firstboot/jeos-firstboot-functions
--- 
old/jeos-firstboot-1.1.1.0/files/usr/share/jeos-firstboot/jeos-firstboot-functions
  2022-02-17 15:53:31.000000000 +0100
+++ 
new/jeos-firstboot-1.1.1.1/files/usr/share/jeos-firstboot/jeos-firstboot-functions
  2022-03-16 15:55:07.000000000 +0100
@@ -155,4 +155,11 @@
         fi
 }
 
+# Returns the basename of the target of network.service,
+# e.g. "wicked" or "NetworkManager"
+current_network_service()
+{
+       systemctl show -P Id network.service | cut -d. -f1
+}
+
 # vim: syntax=sh

++++++ jeos-firstboot.obsinfo ++++++
--- /var/tmp/diff_new_pack.zNTQbE/_old  2022-03-18 16:41:45.609165173 +0100
+++ /var/tmp/diff_new_pack.zNTQbE/_new  2022-03-18 16:41:45.613165176 +0100
@@ -1,5 +1,5 @@
 name: jeos-firstboot
-version: 1.1.1.0
-mtime: 1645109611
-commit: ab6c8a7fac1ce770a6bb522ba6c997c56da3f756
+version: 1.1.1.1
+mtime: 1647442507
+commit: e0ae3fee933953e5f6c2c52fff95ac253ba8e315
 

Reply via email to