Accepting request 970861 from Virtualization:Appliances:Images:openSUSE-Tumbleweed

OBS-URL: https://build.opensuse.org/request/show/970861
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kiwi-templates-JeOS?expand=0&rev=30
This commit is contained in:
Dominique Leuenberger 2022-04-22 19:52:46 +00:00 committed by Git OBS Bridge
commit a4b594d6f4
3 changed files with 18 additions and 4 deletions

View File

@ -273,7 +273,6 @@
<package name="parted"/>
<package name="systemd-sysvinit"/>
<package name="timezone"/>
<package name="wicked"/>
<package name="iproute2"/>
<package name="openssh"/>
<package name="rsync"/>
@ -295,15 +294,19 @@
<package name="snapper"/>
<!-- Only if not cloud-init -->
<package name="jeos-firstboot"/>
<!-- Require 1.2.0.0 for proper NM support.
Not sure whether this syntax is intentionally supported but it appears to work. -->
<package name="jeos-firstboot &gt;= 1.2.0.0"/>
<package name="fbiterm"/> <!-- Optionally used by jeos-firstboot for non-latin fonts -->
<!-- NM everywhere except that cloud-init needs wicked -->
<package name="NetworkManager"/>
<!-- Not useful with OpenStack -->
<package name="firewalld"/>
</packages>
<!-- Shim for secure boot everywhere except for RPi -->
<packages type="image" profiles="kvm-and-xen,VMware,MS-HyperV,OpenStack-Cloud">
<!-- Shim for secure boot everywhere except for RPi -->
<package name="shim" arch="aarch64,x86_64"/>
</packages>
@ -338,7 +341,8 @@
<package name="dracut-kiwi-oem-repart"/>
<package name="kernel-default"/>
<!-- For WiFi: -->
<package name="jeos-firstboot-rpiwifi"/>
<package name="wireless-tools"/>
<package name="wpa_supplicant"/>
<package name="bcm43xx-firmware"/>
<package name="kernel-firmware"/><!-- Fix choice between kernel-firmware and kernel-firmware-all -->
<package name="u-boot-rpiarm64" arch="aarch64"/>

View File

@ -83,6 +83,11 @@ if [ -x /usr/sbin/firewalld ]; then
systemctl enable firewalld.service
fi
# Enable NetworkManager if installed
if rpm -q --whatprovides NetworkManager >/dev/null; then
systemctl enable NetworkManager.service
fi
#======================================
# Add repos from control.xml
#--------------------------------------

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Thu Apr 14 12:32:44 UTC 2022 - Fabian Vogt <fvogt@suse.com>
- Switch to NetworkManager except for OpenStack-Cloud
-------------------------------------------------------------------
Fri Jan 28 15:27:59 UTC 2022 - Ivan Ivanov <ivan.ivanov@suse.com>