Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package yast2-firstboot for openSUSE:Factory checked in at 2021-09-26 21:48:20 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/yast2-firstboot (Old) and /work/SRC/openSUSE:Factory/.yast2-firstboot.new.1899 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "yast2-firstboot" Sun Sep 26 21:48:20 2021 rev:108 rq:920896 version:4.4.5 Changes: -------- --- /work/SRC/openSUSE:Factory/yast2-firstboot/yast2-firstboot.changes 2021-08-16 10:12:54.239005719 +0200 +++ /work/SRC/openSUSE:Factory/.yast2-firstboot.new.1899/yast2-firstboot.changes 2021-09-26 21:48:57.670797412 +0200 @@ -1,0 +2,7 @@ +Tue Sep 22 14:07:55 UTC 2021 - Scott Bradnick <sbradn...@suse.com> + +- Adding check for WSL so that 'systemd start syslog.socket' isn't run + for every run of YaST2.Firstboot (related to bsc#1190789). +- 4.4.5 + +------------------------------------------------------------------- Old: ---- yast2-firstboot-4.4.4.tar.bz2 New: ---- yast2-firstboot-4.4.5.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ yast2-firstboot.spec ++++++ --- /var/tmp/diff_new_pack.hxrLOf/_old 2021-09-26 21:48:58.122797915 +0200 +++ /var/tmp/diff_new_pack.hxrLOf/_new 2021-09-26 21:48:58.126797920 +0200 @@ -17,7 +17,7 @@ Name: yast2-firstboot -Version: 4.4.4 +Version: 4.4.5 Release: 0 Summary: YaST2 - Initial System Configuration License: GPL-2.0-only ++++++ yast2-firstboot-4.4.4.tar.bz2 -> yast2-firstboot-4.4.5.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-firstboot-4.4.4/package/yast2-firstboot.changes new/yast2-firstboot-4.4.5/package/yast2-firstboot.changes --- old/yast2-firstboot-4.4.4/package/yast2-firstboot.changes 2021-08-12 18:05:55.000000000 +0200 +++ new/yast2-firstboot-4.4.5/package/yast2-firstboot.changes 2021-09-22 16:52:42.000000000 +0200 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Tue Sep 22 14:07:55 UTC 2021 - Scott Bradnick <sbradn...@suse.com> + +- Adding check for WSL so that 'systemd start syslog.socket' isn't run + for every run of YaST2.Firstboot (related to bsc#1190789). +- 4.4.5 + +------------------------------------------------------------------- Tue Aug 10 16:29:28 UTC 2021 - Jos?? Iv??n L??pez Gonz??lez <jlo...@suse.com> - Move the home directory when the user login is modified in the diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-firstboot-4.4.4/package/yast2-firstboot.spec new/yast2-firstboot-4.4.5/package/yast2-firstboot.spec --- old/yast2-firstboot-4.4.4/package/yast2-firstboot.spec 2021-08-12 18:05:55.000000000 +0200 +++ new/yast2-firstboot-4.4.5/package/yast2-firstboot.spec 2021-09-22 16:52:42.000000000 +0200 @@ -17,7 +17,7 @@ Name: yast2-firstboot -Version: 4.4.4 +Version: 4.4.5 Release: 0 Summary: YaST2 - Initial System Configuration License: GPL-2.0-only diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/yast2-firstboot-4.4.4/scripts/Firstboot-Stage/S02-logging new/yast2-firstboot-4.4.5/scripts/Firstboot-Stage/S02-logging --- old/yast2-firstboot-4.4.4/scripts/Firstboot-Stage/S02-logging 2021-08-12 18:05:55.000000000 +0200 +++ new/yast2-firstboot-4.4.5/scripts/Firstboot-Stage/S02-logging 2021-09-22 16:52:42.000000000 +0200 @@ -3,9 +3,14 @@ log "=======================" #============================================= -# 3) start syslog daemon +# 3) start syslog daemon (when required) #--------------------------------------------- -/usr/bin/systemctl start syslog.socket +if [[ $(/usr/bin/systemd-detect-virt) == 'wsl' ]]; +then + log "Running in WSL, not using systemctl." +else + /usr/bin/systemctl start syslog.socket +fi #============================================= # 3.1) set debug and logging options