Hello community,
here is the log from the commit of package kiwi-images-wsl for openSUSE:Factory
checked in at 2020-02-07 15:54:08
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/kiwi-images-wsl (Old)
and /work/SRC/openSUSE:Factory/.kiwi-images-wsl.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "kiwi-images-wsl"
Fri Feb 7 15:54:08 2020 rev:4 rq:770909 version:15.2
Changes:
--------
--- /work/SRC/openSUSE:Factory/kiwi-images-wsl/kiwi-images-wsl.changes
2020-01-23 15:54:59.979097692 +0100
+++
/work/SRC/openSUSE:Factory/.kiwi-images-wsl.new.26092/kiwi-images-wsl.changes
2020-02-07 15:55:33.199547877 +0100
@@ -1,0 +2,8 @@
+Thu Jan 30 09:11:06 UTC 2020 - Ludwig Nussel <[email protected]>
+
+- don't install the special apache config anymore as we don't know what it's
+ good for.
+- mount /var/tmp as tmpfs as workaround for the broken wslfs implementation on
+ Windows side (boo#1159195)
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ config.sh ++++++
--- /var/tmp/diff_new_pack.d4k6KA/_old 2020-02-07 15:55:33.647548105 +0100
+++ /var/tmp/diff_new_pack.d4k6KA/_new 2020-02-07 15:55:33.647548105 +0100
@@ -1,6 +1,7 @@
#!/bin/bash
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019,2020 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -59,7 +60,11 @@
# WSL specific tweaks
# XXX: not sure what this is for. Was found in root.tar.bz2. Needs to be
confirmed
-mkdir -p etc/apache2/conf.d
-echo AcceptFilter http none > etc/apache2/conf.d/wsl.conf
+#mkdir -p etc/apache2/conf.d
+#echo AcceptFilter http none > etc/apache2/conf.d/wsl.conf
+
+# workaround for broken wslfs (boo#1159195). Note that as of 2020-02-06 kiwi
+# resets /etc/fstab: https://github.com/OSInside/kiwi/issues/1329
+echo "tmpfs /var/tmp tmpfs defaults 0 0" >> /etc/fstab
exit 0