Hello community,
here is the log from the commit of package openSUSE-Tumbleweed-Yomi for
openSUSE:Factory checked in at 2019-08-08 14:23:45
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/openSUSE-Tumbleweed-Yomi (Old)
and /work/SRC/openSUSE:Factory/.openSUSE-Tumbleweed-Yomi.new.9556 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "openSUSE-Tumbleweed-Yomi"
Thu Aug 8 14:23:45 2019 rev:3 rq:721566 version:1.0.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/openSUSE-Tumbleweed-Yomi/openSUSE-Tumbleweed-Yomi.changes
2019-08-06 15:11:53.211740926 +0200
+++
/work/SRC/openSUSE:Factory/.openSUSE-Tumbleweed-Yomi.new.9556/openSUSE-Tumbleweed-Yomi.changes
2019-08-08 14:23:46.368345686 +0200
@@ -1,0 +2,7 @@
+Wed Aug 7 08:00:15 UTC 2019 - Alberto Planas Dominguez <[email protected]>
+
+- Use the FQDN for the minion ID in case that hostname is not
+ localhost
+- Add e2fsprogs and xfsprogs packages
+
+-------------------------------------------------------------------
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ yomi.kiwi ++++++
--- /var/tmp/diff_new_pack.bjYmWd/_old 2019-08-08 14:23:47.568345503 +0200
+++ /var/tmp/diff_new_pack.bjYmWd/_new 2019-08-08 14:23:47.568345503 +0200
@@ -76,12 +76,14 @@
<!-- Yomi requirements -->
<package name="btrfsprogs"/>
<package name="dosfstools"/>
+ <package name="e2fsprogs"/>
<package name="kexec-tools"/>
<package name="lsof"/>
<package name="mdadm"/>
<package name="snapper"/>
<package name="syslinux"/>
<package name="usbutils"/>
+ <package name="xfsprogs"/>
</packages>
<packages type="bootstrap">
++++++ config.sh ++++++
--- /var/tmp/diff_new_pack.bjYmWd/_old 2019-08-08 14:23:47.596345498 +0200
+++ /var/tmp/diff_new_pack.bjYmWd/_new 2019-08-08 14:23:47.600345498 +0200
@@ -204,7 +204,7 @@
# the minion_id the based on some priorities:
#
# - minion_id boot parameter
-# - hostname if is different from localhost
+# - hostname (FQDN) if is different from localhost
# - the MAC address of the first interface
#
# This algorithm replaces the default minion ID, that is the
@@ -218,7 +218,7 @@
done
# If there is not parameter, take the hostname
- [ -z "$minion_id" ] && minion_id=$(hostname)
+ [ -z "$minion_id" ] && minion_id=$(hostname -f)
# Get the MAC address of the first interface if hostname is localhost
shopt -s extglob