Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gnome-branding-MicroOS for openSUSE:Factory checked in at 2021-05-01 00:46:12 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gnome-branding-MicroOS (Old) and /work/SRC/openSUSE:Factory/.gnome-branding-MicroOS.new.1947 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gnome-branding-MicroOS" Sat May 1 00:46:12 2021 rev:2 rq:889224 version:20210427 Changes: -------- --- /work/SRC/openSUSE:Factory/gnome-branding-MicroOS/gnome-branding-MicroOS.changes 2021-03-24 16:11:12.123828812 +0100 +++ /work/SRC/openSUSE:Factory/.gnome-branding-MicroOS.new.1947/gnome-branding-MicroOS.changes 2021-05-01 00:46:15.311570550 +0200 @@ -1,0 +2,12 @@ +Tue Apr 27 23:37:33 UTC 2021 - Micha?? Rostecki <mroste...@suse.com> + +- Wait for Internet connectivity before proceeding with next steps. + Before this change, the mod-firstboot script was failing when: + * there was no network configured on the first boot (happens + when using NetworkManager, since it's not configured by YaST + during installation) + * the script started before wifi connection was properly + established +- 20210427 + +------------------------------------------------------------------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gnome-branding-MicroOS.spec ++++++ --- /var/tmp/diff_new_pack.FAz9G6/_old 2021-05-01 00:46:15.899567931 +0200 +++ /var/tmp/diff_new_pack.FAz9G6/_new 2021-05-01 00:46:15.899567931 +0200 @@ -1,6 +1,7 @@ # # spec file for package gnome-branding-MicroOS # +# Copyright (c) 2021 SUSE LLC # Copyright (c) 2021 SUSE Software Solutions GmbH # # All modifications and additions to the file contributed by third parties @@ -15,6 +16,7 @@ # Please submit bugfixes or comments via https://bugs.opensuse.org/ # + Name: gnome-branding-MicroOS Summary: MicroOS Desktop default settings License: BSD-3-Clause @@ -26,12 +28,12 @@ Source3: mod-firstboot.desktop Source4: mod-firstboot BuildArch: noarch -BuildRequires: gio-branding-openSUSE BuildRequires: flatpak -Requires: sound-theme-freedesktop -Requires: gio-branding-openSUSE +BuildRequires: gio-branding-openSUSE Requires: flatpak -Version: 20210322 +Requires: gio-branding-openSUSE +Requires: sound-theme-freedesktop +Version: 20210427 Release: 0 %description ++++++ mod-firstboot ++++++ --- /var/tmp/diff_new_pack.FAz9G6/_old 2021-05-01 00:46:15.967567627 +0200 +++ /var/tmp/diff_new_pack.FAz9G6/_new 2021-05-01 00:46:15.971567610 +0200 @@ -1,5 +1,9 @@ #!/bin/sh ( +echo "# Waiting for Internet connection" +until /usr/bin/ping -q -c 1 flathub.org; do sleep 1; done +echo "20" + echo "# Adding Flathub Repository" /usr/bin/flatpak remote-add --user --if-not-exists flathub /usr/share/microos-desktop/flathub.flatpakrepo if [ "$?" != 0 ] ; then @@ -7,7 +11,7 @@ --text="Adding Flathub Repo Failed" exit 1 fi -echo "25" +echo "40" echo "# Installing Firefox" /usr/bin/flatpak install --user --noninteractive flathub org.mozilla.firefox @@ -17,7 +21,7 @@ exit 1 fi -echo "50" +echo "60" echo "# Installing Calculator" /usr/bin/flatpak install --user --noninteractive flathub org.gnome.Calculator if [ "$?" != 0 ] ; then @@ -26,7 +30,7 @@ exit 1 fi -echo "75" +echo "80" echo "# Installing gEdit" /usr/bin/flatpak install --user --noninteractive flathub org.gnome.gedit if [ "$?" != 0 ] ; then