Merge pull request 'Add Leap-GNOME experiment' (#4) from master into 16.0
Reviewed-on: #4
This commit is contained in:
commit
634f60f31a
3
Leap-GNOME/_multibuild
Normal file
3
Leap-GNOME/_multibuild
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<multibuild>
|
||||||
|
<package>selfinstall-leap-gnome</package>
|
||||||
|
</multibuild>
|
222
Leap-GNOME/config.sh
Normal file
222
Leap-GNOME/config.sh
Normal file
@ -0,0 +1,222 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
#================
|
||||||
|
# FILE : config.sh
|
||||||
|
#----------------
|
||||||
|
# PROJECT : openSUSE KIWI Image System
|
||||||
|
# COPYRIGHT : (c) 2006,2007,2008,2017 SUSE Linux GmbH. All rights reserved
|
||||||
|
# :
|
||||||
|
# AUTHOR : Marcus Schaefer <ms@suse.de>, Stephan Kulow <coolo@suse.de>, Fabian Vogt <fvogt@suse.com>
|
||||||
|
# :
|
||||||
|
# LICENSE : BSD
|
||||||
|
#======================================
|
||||||
|
# Functions...
|
||||||
|
#--------------------------------------
|
||||||
|
test -f /.kconfig && . /.kconfig
|
||||||
|
test -f /.profile && . /.profile
|
||||||
|
|
||||||
|
set -euxo pipefail
|
||||||
|
|
||||||
|
#pl=$(rpmqpack | grep release-livecd-)
|
||||||
|
|
||||||
|
|
||||||
|
# Get the flavor from the installed (openSUSE|Leap)-release-livecd- RPM
|
||||||
|
# as <censored> kiwi does not make the flavor accessible
|
||||||
|
#desktop=$(echo "$pl" | awk -F- '{ print $4 }' | tr A-Z a-z)
|
||||||
|
desktop="gnome" # hardcode it as we don't have (release-livecd* package
|
||||||
|
|
||||||
|
# Not needed, but required by suse-module-tools (bsc#1116665)
|
||||||
|
rpm -q binutils && rpm -e --nodeps binutils
|
||||||
|
# Not needed, but required by dracut-kiwi-live -> cdrkit-cdrtools-compat
|
||||||
|
rpm -q wodim && rpm -e --nodeps wodim
|
||||||
|
# Actually a hack: xrdb requires this, but on livecds it's not used
|
||||||
|
rpm -qa | grep "^cpp" | xargs -r rpm -e --nodeps
|
||||||
|
rpm -qa | grep "^libisl" | xargs -r rpm -e
|
||||||
|
|
||||||
|
# GTK 3 hard-requires this for some reason. The only GTK3 application is Firefox,
|
||||||
|
# which has its own icons and we have breeze for the rest.
|
||||||
|
[ "$desktop" = "kde" ] && rpm -e --nodeps adwaita-icon-theme
|
||||||
|
|
||||||
|
# Workaround until dropped from xfce4-branding-openSUSE
|
||||||
|
[ "$desktop" = "x11" -o "$desktop" = "xfce" ] && rpm -e --nodeps noto-coloremoji-fonts
|
||||||
|
|
||||||
|
#--------------------------------------
|
||||||
|
# enable and disable services
|
||||||
|
|
||||||
|
for i in langset NetworkManager firewalld; do
|
||||||
|
systemctl -f enable $i
|
||||||
|
done
|
||||||
|
|
||||||
|
for i in sshd cron wicked purge-kernels; do
|
||||||
|
systemctl -f disable $i
|
||||||
|
done
|
||||||
|
|
||||||
|
echo '# multipath needs to be excluded from dracut as it breaks os-prober' > /etc/dracut.conf.d/no-multipath.conf
|
||||||
|
echo 'omit_dracutmodules+=" multipath "' >> /etc/dracut.conf.d/no-multipath.conf
|
||||||
|
|
||||||
|
# Stronger compression for the initrd
|
||||||
|
echo 'compress="xz -4 --check=crc32 --memlimit-compress=50%"' >> /etc/dracut.conf.d/less-storage.conf
|
||||||
|
|
||||||
|
if [ "$desktop" = "x11" ] || [ "$desktop" = "xfce" ]; then
|
||||||
|
# Forcibly exclude networking support
|
||||||
|
sed -i 's/echo network rootfs-block/echo rootfs-block/' /usr/lib/dracut/modules.d/90kiwi-live/module-setup.sh
|
||||||
|
echo 'omit_dracutmodules+=" network "' >> /etc/dracut.conf.d/no-network.conf
|
||||||
|
|
||||||
|
# This only needs to be able to boot the live cd
|
||||||
|
echo 'omit_dracutmodules+=" bcache crypt lvm mdraid lunmask "' >> /etc/dracut.conf.d/less-storage.conf
|
||||||
|
|
||||||
|
# Unnecessary modules in the initrd
|
||||||
|
echo 'omit_drivers+=" cifs ocfs2 "' >> /etc/dracut.conf.d/less-storage.conf
|
||||||
|
|
||||||
|
# Work around https://github.com/OSInside/kiwi/issues/1751
|
||||||
|
sed -i '/omit_dracutmodules=/d' /usr/bin/dracut
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [ "$desktop" = "x11" ]; then
|
||||||
|
# Only used for X11 acceleration on vmwgfx, saves ~47MiB
|
||||||
|
rpm -e --nodeps Mesa-gallium
|
||||||
|
|
||||||
|
# Surely that specific font isn't necessary
|
||||||
|
rpm -e --nodeps google-poppins-fonts
|
||||||
|
|
||||||
|
# Generated on boot if missing
|
||||||
|
rm /etc/udev/hwdb.bin
|
||||||
|
fi
|
||||||
|
|
||||||
|
cd /
|
||||||
|
|
||||||
|
# Import keys for installation
|
||||||
|
touch /installkey.gpg
|
||||||
|
gpg --batch --homedir /root/.gnupg --no-default-keyring --ignore-time-conflict --ignore-valid-from --keyring /installkey.gpg --import /usr/lib/rpm/gnupg/keys/*
|
||||||
|
mkdir -p /pubkeys
|
||||||
|
for i in /usr/lib/rpm/gnupg/keys/*.asc ; do
|
||||||
|
rpm --import $i || true
|
||||||
|
ln -s "$i" "/pubkeys/${i##*/}.key"
|
||||||
|
done
|
||||||
|
|
||||||
|
# Craft license.tar.gz used by YaST
|
||||||
|
EULA_DIR=/etc/YaST2/licenses/base
|
||||||
|
[ -d "${EULA_DIR}" ] || EULA_DIR=/usr/share/licenses/product/base
|
||||||
|
(cd "${EULA_DIR}"; tar -cvzf /license.tar.gz *)
|
||||||
|
|
||||||
|
# Remove some large locales to save space
|
||||||
|
rm -rf /usr/{lib,share}/locale/{ca,cs,da,ja,fi,hu,id,ko,nl,pl,tr,ru,sk,sr,sv,uk,vi,cmn_TW,zh}*
|
||||||
|
rm -rf /usr/share/qt5/translations/*_{ca,cs,da,ja,fi,hu,id,ko,nl,pl,tr,ru,sk,sr,sv,uk,vi,cmn_TW,zh}*
|
||||||
|
zypper --non-interactive rm yast2-trans-{uk,sv,ru,ja,da,cs,sr,vi} || :
|
||||||
|
|
||||||
|
# Some packages really exaggerate here
|
||||||
|
rm -rf /usr/share/doc/packages/*
|
||||||
|
|
||||||
|
# Save more than 200 MiB by removing this, not very useful for lives
|
||||||
|
rm -rf /lib/firmware/{liquidio,netronome,qed,mrvl,mellanox,qcom,cypress,dpaa2,bnx2x,cxgb4}
|
||||||
|
|
||||||
|
# The gems are unpackaged already, no need to store them twice
|
||||||
|
rm -rf /usr/lib*/ruby/gems/*/cache/
|
||||||
|
|
||||||
|
# Not needed, boo#1166406
|
||||||
|
rm -f /boot/vmlinux*.[gx]z
|
||||||
|
rm -f /lib/modules/*/vmlinux*.[gx]z
|
||||||
|
|
||||||
|
# Decompress kernel modules, better for squashfs (boo#1192457)
|
||||||
|
find /lib/modules/*/kernel -name '*.ko.xz' -exec xz -d {} +
|
||||||
|
find /lib/modules/*/kernel -name '*.ko.zst' -exec zstd --rm -d {} +
|
||||||
|
depmod $(basename /lib/modules/*)
|
||||||
|
|
||||||
|
# Install README.BETA where expected by YaST
|
||||||
|
cp /usr/lib/skelcd/CD1/README.BETA / || :
|
||||||
|
zypper --non-interactive rm -u skelcd-openSUSE || :
|
||||||
|
|
||||||
|
# Remove the zypper locks needed for a slimmer system
|
||||||
|
zypper rl $(seq 1 $(zypper ll | wc -l))
|
||||||
|
|
||||||
|
# Create fstab if it doesn't exist (Work around boo#1185815)
|
||||||
|
>>/etc/fstab
|
||||||
|
|
||||||
|
chkstat --system --set
|
||||||
|
|
||||||
|
ln -s /usr/lib/systemd/system/graphical.target /etc/systemd/system/default.target
|
||||||
|
baseUpdateSysConfig /etc/sysconfig/keyboard YAST_KEYBOARD "english-us,pc104"
|
||||||
|
baseUpdateSysConfig /etc/sysconfig/keyboard COMPOSETABLE "clear latin1.add"
|
||||||
|
baseUpdateSysConfig /etc/sysconfig/language RC_LANG ""
|
||||||
|
|
||||||
|
baseUpdateSysConfig /etc/sysconfig/console CONSOLE_FONT "eurlatgr.psfu"
|
||||||
|
baseUpdateSysConfig /etc/sysconfig/console CONSOLE_SCREENMAP trivial
|
||||||
|
baseUpdateSysConfig /etc/sysconfig/console CONSOLE_MAGIC "(K"
|
||||||
|
baseUpdateSysConfig /etc/sysconfig/console CONSOLE_ENCODING "UTF-8"
|
||||||
|
|
||||||
|
[ "$desktop" = "gnome" ] && displaymanager=gdm
|
||||||
|
[ "$desktop" = "kde" ] && displaymanager=sddm
|
||||||
|
[ "$desktop" = "xfce" ] && displaymanager=lightdm
|
||||||
|
[ "$desktop" = "x11" ] && displaymanager=lightdm
|
||||||
|
baseUpdateSysConfig /etc/sysconfig/displaymanager DISPLAYMANAGER $displaymanager
|
||||||
|
|
||||||
|
# boo#1039756
|
||||||
|
[ "$desktop" = "gnome" ] && baseUpdateSysConfig /etc/sysconfig/windowmanager DEFAULT_WM gnome
|
||||||
|
|
||||||
|
# Disable journal write to disk in live mode, bug 950999
|
||||||
|
echo "Storage=volatile" >> /etc/systemd/journald.conf
|
||||||
|
|
||||||
|
# Remove generated files (boo#1098535)
|
||||||
|
rm -rf /var/cache/zypp/* /var/lib/zypp/AnonymousUniqueId /var/lib/systemd/random-seed
|
||||||
|
|
||||||
|
cat >/etc/systemd/system/fixupbootloader.service <<EOF
|
||||||
|
# boo#1155545 - LOADER_TYPE has to be nil for the upgrade to work properly.
|
||||||
|
# Kiwi does not allow changing the file directly, so do it in this ugly way.
|
||||||
|
[Unit]
|
||||||
|
Description=Remove LOADER_TYPE from /etc/sysconfig/bootloader
|
||||||
|
Before=systemd-user-sessions.service
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=oneshot
|
||||||
|
ExecStart=/usr/bin/gawk -i inplace '!/^LOADER_TYPE=/' /etc/sysconfig/bootloader
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
||||||
|
EOF
|
||||||
|
|
||||||
|
systemctl -f enable fixupbootloader.service
|
||||||
|
|
||||||
|
#======================================
|
||||||
|
# Configure SelfInstall specifics
|
||||||
|
#--------------------------------------
|
||||||
|
if [[ "$kiwi_profiles" == *"SelfInstall"* ]]; then
|
||||||
|
cat > /etc/systemd/system/selfinstallreboot.service <<-EOF
|
||||||
|
[Unit]
|
||||||
|
Description=SelfInstall Image Reboot after Firstboot (to ensure ignition and such runs)
|
||||||
|
After=systemd-machine-id-commit.service
|
||||||
|
Before=jeos-firstboot.service
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=oneshot
|
||||||
|
ExecStart=rm /etc/systemd/system/selfinstallreboot.service
|
||||||
|
ExecStart=rm /etc/systemd/system/default.target.wants/selfinstallreboot.service
|
||||||
|
ExecStart=systemctl --no-block reboot
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=default.target
|
||||||
|
EOF
|
||||||
|
ln -s /etc/systemd/system/selfinstallreboot.service /etc/systemd/system/default.target.wants/selfinstallreboot.service
|
||||||
|
fi
|
||||||
|
|
||||||
|
#======================================
|
||||||
|
# gnome-initial-setup
|
||||||
|
#--------------------------------------
|
||||||
|
if [[ "$kiwi_profiles" == *"SelfInstall"* ]]; then
|
||||||
|
cat > /etc/gdm/custom.conf <<-EOF
|
||||||
|
[daemon]
|
||||||
|
InitialSetupEnable=True
|
||||||
|
EOF
|
||||||
|
|
||||||
|
# Allow newly created user to use sudo
|
||||||
|
|
||||||
|
cat > /etc/sudoers <<-EOF
|
||||||
|
Defaults always_set_home
|
||||||
|
Defaults secure_path="/usr/sbin:/usr/bin:/sbin:/bin:/usr/local/bin:/usr/local/sbin"
|
||||||
|
Defaults env_reset
|
||||||
|
Defaults env_keep = "LANG LC_ADDRESS LC_CTYPE LC_COLLATE LC_IDENTIFICATION LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER LC_TELEPHONE LC_TIME LC_ALL LANGUAGE LINGUAS XDG_SESSION_COOKIE"
|
||||||
|
Defaults !insults
|
||||||
|
root ALL=(ALL:ALL) ALL
|
||||||
|
%wheel ALL=(ALL:ALL) ALL
|
||||||
|
@includedir /etc/sudoers.d
|
||||||
|
EOF
|
||||||
|
fi
|
||||||
|
|
320
Leap-GNOME/list-common.sh
Normal file
320
Leap-GNOME/list-common.sh
Normal file
@ -0,0 +1,320 @@
|
|||||||
|
buildignore poppler-data
|
||||||
|
buildignore tin
|
||||||
|
buildignore desktop-translations
|
||||||
|
buildignore ft2demos
|
||||||
|
buildignore gimp-help
|
||||||
|
buildignore gimp-lang
|
||||||
|
buildignore libreoffice-base
|
||||||
|
buildignore libreoffice-mailmerge
|
||||||
|
buildignore libreoffice-math
|
||||||
|
buildignore libreoffice-filters-optional
|
||||||
|
buildignore libreoffice-pyuno
|
||||||
|
buildignore readline-doc
|
||||||
|
buildignore graphviz
|
||||||
|
buildignore linux-kernel-headers
|
||||||
|
buildignore bash-doc
|
||||||
|
buildignore gimp-plugins-python
|
||||||
|
buildignore patterns-openSUSE-gnome_basis_opt
|
||||||
|
buildignore patterns-openSUSE-gnome_admin
|
||||||
|
buildignore patterns-openSUSE-gnome_multimedia_opt
|
||||||
|
buildignore patterns-openSUSE-gnome_imaging_opt
|
||||||
|
buildignore patterns-openSUSE-gnome_office_opt
|
||||||
|
buildignore patterns-openSUSE-apparmor_opt
|
||||||
|
buildignore patterns-openSUSE-enhanced_base_opt
|
||||||
|
buildignore patterns-openSUSE-fonts_opt
|
||||||
|
buildignore patterns-openSUSE-imaging_opt
|
||||||
|
buildignore patterns-openSUSE-kde_utilities_opt
|
||||||
|
buildignore patterns-openSUSE-multimedia_opt
|
||||||
|
buildignore patterns-openSUSE-non_oss_opt
|
||||||
|
buildignore patterns-openSUSE-office_opt
|
||||||
|
buildignore patterns-openSUSE-x11_opt
|
||||||
|
buildignore patterns-gnome-gnome_basis_opt
|
||||||
|
buildignore patterns-gmome-gnome_admin
|
||||||
|
buildignore patterns-gnome-gnome_multimedia_opt
|
||||||
|
buildignore patterns-gnome-gnome_imaging_opt
|
||||||
|
buildignore patterns-gnome-gnome_office_opt
|
||||||
|
buildignore patterns-base-apparmor_opt
|
||||||
|
buildignore patterns-base-enhanced_base_opt
|
||||||
|
buildignore patterns-fonts-fonts_opt
|
||||||
|
buildignore patterns-desktop-imaging_opt
|
||||||
|
buildignore patterns-kde-kde_utilities_opt
|
||||||
|
buildignore patterns-desktop-multimedia_opt
|
||||||
|
buildignore patterns-openSUSE-non_oss_opt
|
||||||
|
buildignore patterns-office-office_opt
|
||||||
|
buildignore patterns-base-x11_opt
|
||||||
|
buildignore patterns-base-x11_enhanced
|
||||||
|
buildignore make
|
||||||
|
buildignore netpbm
|
||||||
|
buildignore p7zip-full
|
||||||
|
buildignore busybox-static
|
||||||
|
buildignore inxi
|
||||||
|
|
||||||
|
# Just too big
|
||||||
|
buildignore sane-backends
|
||||||
|
|
||||||
|
install branding-openSUSE
|
||||||
|
install gfxboot i686
|
||||||
|
install shim x86_64
|
||||||
|
|
||||||
|
# Don't pull in any -32bit libs
|
||||||
|
buildignore glibc-32bit
|
||||||
|
|
||||||
|
buildignore libvdpau_r300
|
||||||
|
buildignore libvdpau_radeonsi
|
||||||
|
buildignore libvdpau_r600
|
||||||
|
buildignore pavucontrol
|
||||||
|
buildignore libqmi-tools
|
||||||
|
|
||||||
|
buildignore 'python*-pip'
|
||||||
|
|
||||||
|
buildignore multipath-tools-rbd
|
||||||
|
|
||||||
|
buildignore acpica
|
||||||
|
buildignore xorg-x11-Xvnc
|
||||||
|
buildignore cabextract
|
||||||
|
buildignore sssd
|
||||||
|
buildignore db-utils
|
||||||
|
buildignore dnsmasq
|
||||||
|
buildignore fribidi
|
||||||
|
buildignore ipmitool
|
||||||
|
buildignore irda
|
||||||
|
buildignore lomoco
|
||||||
|
buildignore mksh
|
||||||
|
|
||||||
|
# Ignore samba
|
||||||
|
buildignore cifs-utils
|
||||||
|
buildignore gvfs-backend-samba
|
||||||
|
|
||||||
|
# Legacy packages - not actually used, but pull in quite a lot
|
||||||
|
buildignore xorg-x11
|
||||||
|
buildignore xorg-x11-essentials
|
||||||
|
buildignore xorg-x11-server-extra
|
||||||
|
# config.sh enables autologin and configures the display-manager
|
||||||
|
install xdm
|
||||||
|
install sysvinit-tools
|
||||||
|
# We already have a different desktop
|
||||||
|
buildignore icewm
|
||||||
|
# We have enough fonts already
|
||||||
|
buildignore baekmuk-ttf-fonts
|
||||||
|
buildignore google-droid-fonts
|
||||||
|
# pcf fonts aren't really useful anymore
|
||||||
|
buildignore efont-unicode-bitmap-fonts
|
||||||
|
buildignore baekmuk-bitmap-fonts
|
||||||
|
buildignore intlfonts-chinese-big-bitmap-fonts
|
||||||
|
buildignore xorg-x11-fonts
|
||||||
|
buildignore xorg-x11-fonts-legacy
|
||||||
|
|
||||||
|
buildignore strace
|
||||||
|
buildignore tcsh
|
||||||
|
buildignore usbmuxd
|
||||||
|
|
||||||
|
# This would otherwise create a password prompt
|
||||||
|
# See also https://bugzilla.opensuse.org/show_bug.cgi?id=544314 and
|
||||||
|
# https://bugzilla.opensuse.org/show_bug.cgi?id=537343
|
||||||
|
buildignore gnome-keyring-pam
|
||||||
|
|
||||||
|
buildignore apparmor-docs
|
||||||
|
buildignore mutt-doc
|
||||||
|
|
||||||
|
# Do not buildignore here. Needed by pidgin in Xfce Live CD.
|
||||||
|
# buildignore cyrus-sasl
|
||||||
|
|
||||||
|
# Pulls in libgnustep
|
||||||
|
buildignore unar
|
||||||
|
|
||||||
|
# Pulled in by python3-kiwi in the buildroot
|
||||||
|
buildignore jing
|
||||||
|
|
||||||
|
# Won't work with current firefox anyway
|
||||||
|
buildignore icedtea-web
|
||||||
|
|
||||||
|
# Recommended by base_x11
|
||||||
|
buildignore tigervnc
|
||||||
|
|
||||||
|
# Recommended by enhanced_base
|
||||||
|
buildignore autofs
|
||||||
|
buildignore expect
|
||||||
|
buildignore m4
|
||||||
|
buildignore mutt
|
||||||
|
buildignore net-snmp
|
||||||
|
buildignore procmail
|
||||||
|
buildignore recode
|
||||||
|
buildignore spax
|
||||||
|
|
||||||
|
# Recommended by rest_cd_core
|
||||||
|
buildignore awesfx
|
||||||
|
buildignore espeak
|
||||||
|
buildignore pam_mount
|
||||||
|
|
||||||
|
# Recommended by man
|
||||||
|
buildignore groff-full
|
||||||
|
|
||||||
|
# Pulls in various python2 modules
|
||||||
|
buildignore tuned
|
||||||
|
|
||||||
|
# Printing support needs too much data (PPDs) to be useful
|
||||||
|
buildignore cups
|
||||||
|
buildignore cups-client
|
||||||
|
buildignore system-config-printer
|
||||||
|
buildignore ghostscript
|
||||||
|
buildignore ghostscript-fonts-std
|
||||||
|
buildignore ghostscript-fonts-other
|
||||||
|
buildignore manufacturer-PPDs
|
||||||
|
buildignore gutenprint
|
||||||
|
buildignore hplip-hpijs
|
||||||
|
buildignore hplip
|
||||||
|
buildignore system-config-printer-applet
|
||||||
|
buildignore udev-configure-printer
|
||||||
|
|
||||||
|
# We don't need those
|
||||||
|
buildignore yast2-samba-client
|
||||||
|
buildignore yast2-vpn
|
||||||
|
buildignore yast2-journal
|
||||||
|
buildignore yast2-auth-client
|
||||||
|
buildignore yast2-sudo
|
||||||
|
|
||||||
|
# systemd-coredump makes no sense on a live image: there are no debuginfo installed
|
||||||
|
buildignore systemd-coredump
|
||||||
|
buildignore systemd-doc
|
||||||
|
buildignore man-pages
|
||||||
|
|
||||||
|
# VPNC is no longer
|
||||||
|
buildignore NetworkManager-vpnc-gnome
|
||||||
|
buildignore plasma-nm5-vpnc
|
||||||
|
|
||||||
|
# smtp_daemon is recommended by mdadm
|
||||||
|
buildignore busybox-sendmail
|
||||||
|
buildignore exim
|
||||||
|
buildignore msmtp-mta
|
||||||
|
buildignore postfix
|
||||||
|
buildignore postfix-bdb
|
||||||
|
buildignore sendmail
|
||||||
|
|
||||||
|
# Can't install this with the latest kernel due to boo#1095148
|
||||||
|
# And virtualbox is build failed on i586 in TW - 20180617 maxlin
|
||||||
|
buildignore virtualbox-guest-tools
|
||||||
|
buildignore virtualbox-guest-x11
|
||||||
|
|
||||||
|
# bsc#1125156
|
||||||
|
buildignore intel-gpu-tools
|
||||||
|
|
||||||
|
# For certain features in VMs using the spice protocol
|
||||||
|
install spice-vdagent
|
||||||
|
# Same for VMware, but unfortunately too big (~15MiB!)
|
||||||
|
buildignore open-vm-tools
|
||||||
|
|
||||||
|
# Pulls in tcl
|
||||||
|
buildignore usb_modeswitch
|
||||||
|
|
||||||
|
# Of course it's too big
|
||||||
|
buildignore gstreamer-plugins-rs
|
||||||
|
|
||||||
|
# Make vim smaller
|
||||||
|
buildignore vim-data
|
||||||
|
if [ "$distro" = "tumbleweed" ]; then
|
||||||
|
buildignore vim
|
||||||
|
install vim-small
|
||||||
|
fi
|
||||||
|
|
||||||
|
# This was previously required by base
|
||||||
|
install patterns-yast-yast2_basis
|
||||||
|
installPattern yast2_basis
|
||||||
|
|
||||||
|
# This was previously required by rest_cd_core
|
||||||
|
install kernel-default
|
||||||
|
# The compressed (-all) version results in a bigger .iso!
|
||||||
|
install kernel-firmware
|
||||||
|
install patterns-base-enhanced_base
|
||||||
|
installPattern enhanced_base
|
||||||
|
install patterns-base-x11
|
||||||
|
installPattern x11
|
||||||
|
installPattern sw_management
|
||||||
|
install yast2-bootloader
|
||||||
|
install yast2-country
|
||||||
|
install yast2-hardware-detection
|
||||||
|
install yast2-network
|
||||||
|
install yast2-proxy
|
||||||
|
install yast2-storage-ng
|
||||||
|
|
||||||
|
# For working with filesystems
|
||||||
|
install bcache-tools
|
||||||
|
install btrfsprogs
|
||||||
|
install cryptsetup
|
||||||
|
install device-mapper
|
||||||
|
install dmraid
|
||||||
|
install dosfstools
|
||||||
|
install e2fsprogs
|
||||||
|
install exfatprogs
|
||||||
|
install fcoe-utils
|
||||||
|
install jfsutils
|
||||||
|
install mdadm
|
||||||
|
install multipath-tools
|
||||||
|
install ntfs-3g
|
||||||
|
install ntfsprogs
|
||||||
|
install nvme-cli
|
||||||
|
install quota
|
||||||
|
install xfsdump
|
||||||
|
install xfsprogs
|
||||||
|
|
||||||
|
# This was previously recommended by rest_cd_core
|
||||||
|
install adaptec-firmware
|
||||||
|
install atmel-firmware
|
||||||
|
install b43-fwcutter
|
||||||
|
install bluez-firmware
|
||||||
|
install crda
|
||||||
|
install dmidecode
|
||||||
|
install efibootmgr
|
||||||
|
install gtk2-branding-openSUSE
|
||||||
|
install ipw-firmware
|
||||||
|
install iw
|
||||||
|
install libatm1
|
||||||
|
install lsb-release
|
||||||
|
install lvm2
|
||||||
|
install memtest86+ i686,x86_64
|
||||||
|
install mpt-firmware
|
||||||
|
install nano
|
||||||
|
install pptp
|
||||||
|
install quota
|
||||||
|
install rsync
|
||||||
|
install smartmontools
|
||||||
|
install smbios-utils-python i686,x86_64
|
||||||
|
install util-linux
|
||||||
|
install wireless-regdb
|
||||||
|
install wpa_supplicant
|
||||||
|
install xf86-video-ark
|
||||||
|
install xf86-video-ati
|
||||||
|
install xf86-video-chips
|
||||||
|
install xf86-video-fbdev
|
||||||
|
install xf86-video-i128
|
||||||
|
install xf86-video-mga
|
||||||
|
install xf86-video-neomagic
|
||||||
|
install xf86-video-nouveau
|
||||||
|
install xf86-video-nv
|
||||||
|
install xf86-video-qxl
|
||||||
|
install xf86-video-r128
|
||||||
|
install xf86-video-savage
|
||||||
|
install xf86-video-siliconmotion i686,x86_64
|
||||||
|
install xf86-video-sis
|
||||||
|
install xf86-video-sisusb
|
||||||
|
install xf86-video-tdfx
|
||||||
|
install xf86-video-v4l
|
||||||
|
install xf86-video-vesa
|
||||||
|
install xf86-video-voodoo
|
||||||
|
install xz
|
||||||
|
install yast2-trans-de
|
||||||
|
if [ "$distro" = "leap" ]; then
|
||||||
|
install yast2-trans-cs
|
||||||
|
install yast2-trans-da
|
||||||
|
install yast2-trans-es
|
||||||
|
install yast2-trans-ja
|
||||||
|
install yast2-trans-pl
|
||||||
|
install yast2-trans-ru
|
||||||
|
install yast2-trans-sv
|
||||||
|
install yast2-trans-zh_CN
|
||||||
|
install yast2-trans-zh_TW
|
||||||
|
fi
|
||||||
|
install zd1211-firmware
|
||||||
|
install zip
|
||||||
|
|
||||||
|
# Workaround for bsc#1131492
|
||||||
|
buildignore ntp
|
116
Leap-GNOME/list-gnome.sh
Normal file
116
Leap-GNOME/list-gnome.sh
Normal file
@ -0,0 +1,116 @@
|
|||||||
|
buildignore libreoffice-calc
|
||||||
|
buildignore libreoffice-draw
|
||||||
|
buildignore libreoffice-impress
|
||||||
|
buildignore libreoffice-icon-theme-breeze
|
||||||
|
buildignore libreoffice-icon-theme-sifr
|
||||||
|
buildignore libreoffice-icon-theme-hicontrast
|
||||||
|
buildignore colord
|
||||||
|
buildignore apparmor-utils
|
||||||
|
buildignore java-11-openjdk-headless
|
||||||
|
install branding-openSUSE
|
||||||
|
|
||||||
|
# adobe-sourcecodepro-fonts is the monospace font for openSUSE
|
||||||
|
install adobe-sourcecodepro-fonts
|
||||||
|
|
||||||
|
buildignore google-carlito-fonts
|
||||||
|
buildignore noto-sans-fonts
|
||||||
|
buildignore noto-sans-cjk-fonts
|
||||||
|
buildignore noto-sans-sc-bold-fonts
|
||||||
|
buildignore noto-sans-sc-regular-fonts
|
||||||
|
buildignore noto-sans-tc-bold-fonts
|
||||||
|
buildignore noto-sans-tc-regular-fonts
|
||||||
|
buildignore noto-sans-jp-bold-fonts
|
||||||
|
buildignore noto-sans-jp-regular-fonts
|
||||||
|
buildignore noto-sans-kr-bold-fonts
|
||||||
|
buildignore noto-sans-kr-regular-fonts
|
||||||
|
|
||||||
|
# Expected by openQA - But no more space on the CD
|
||||||
|
# install libreoffice-writer
|
||||||
|
buildignore libreoffice
|
||||||
|
|
||||||
|
# Packages for the installer
|
||||||
|
source "$PWD/list-installer.sh"
|
||||||
|
|
||||||
|
# Pulls in sane-backends
|
||||||
|
buildignore simple-scan
|
||||||
|
|
||||||
|
buildignore ghostscript
|
||||||
|
buildignore myspell-en_US
|
||||||
|
buildignore orca
|
||||||
|
|
||||||
|
# gnome-software is a nice software center, but on the live medium only of limited use
|
||||||
|
buildignore gnome-software
|
||||||
|
|
||||||
|
# Pulls in color management tools
|
||||||
|
buildignore gnome-control-center-color
|
||||||
|
|
||||||
|
# 17 MiB, really?
|
||||||
|
buildignore libgweather-lang
|
||||||
|
buildignore gnome-user-docs
|
||||||
|
buildignore gnome-user-docs-lang
|
||||||
|
buildignore eog-lang
|
||||||
|
buildignore evolution-lang
|
||||||
|
buildignore evolution-data-server-lang
|
||||||
|
buildignore zenity-lang
|
||||||
|
|
||||||
|
# Pulls in clamav
|
||||||
|
buildignore amavisd-new
|
||||||
|
|
||||||
|
# Too big
|
||||||
|
buildignore inkscape
|
||||||
|
|
||||||
|
# Pulls in various python modules and duplicity
|
||||||
|
buildignore deja-dup
|
||||||
|
buildignore libpython2_7-1_0
|
||||||
|
|
||||||
|
buildignore gimp
|
||||||
|
buildignore noto-coloremoji-fonts
|
||||||
|
buildignore gnome-weather
|
||||||
|
|
||||||
|
install gparted
|
||||||
|
|
||||||
|
buildignore gparted-lang
|
||||||
|
buildignore vinagre-lang
|
||||||
|
buildignore gedit-lang
|
||||||
|
buildignore fwupd-lang
|
||||||
|
|
||||||
|
# There's eog, enough for live
|
||||||
|
buildignore gnome-photos
|
||||||
|
|
||||||
|
# Moved here from list-common.sh. cyrus-sasl is needed by Pidgin in Xfce Live CD
|
||||||
|
buildignore cyrus-sasl
|
||||||
|
|
||||||
|
# Was part of the gnome pattern
|
||||||
|
install NetworkManager-applet
|
||||||
|
|
||||||
|
# Moved here from list-common.sh, too big for x11
|
||||||
|
install xf86-video-vmware i686,x86_64
|
||||||
|
|
||||||
|
# From rest_cd_core
|
||||||
|
install alsa-firmware
|
||||||
|
|
||||||
|
# Previously required by rest_cd_gnome
|
||||||
|
installPattern apparmor
|
||||||
|
installPattern games
|
||||||
|
installPattern gnome
|
||||||
|
installPattern gnome_basis
|
||||||
|
installPattern gnome_imaging
|
||||||
|
installPattern gnome_internet
|
||||||
|
installPattern gnome_multimedia
|
||||||
|
installPattern gnome_office
|
||||||
|
installPattern gnome_utilities
|
||||||
|
installPattern gnome_yast
|
||||||
|
installPattern imaging
|
||||||
|
installPattern multimedia
|
||||||
|
installPattern office
|
||||||
|
installPattern sw_management_gnome
|
||||||
|
installPattern yast2_basis
|
||||||
|
installPattern yast2_install_wf
|
||||||
|
|
||||||
|
# Previously recommended by rest_cd_gnome
|
||||||
|
install gnome-mines
|
||||||
|
install gnome-sudoku
|
||||||
|
install quadrapassel
|
||||||
|
|
||||||
|
# Pulls in Qt WebEngine, too big
|
||||||
|
buildignore opensuse-welcome
|
15
Leap-GNOME/list-installer.sh
Normal file
15
Leap-GNOME/list-installer.sh
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
# Packages for the installer
|
||||||
|
install live-net-installer
|
||||||
|
install skelcd-openSUSE # Needed for README.BETA
|
||||||
|
install setxkbmap # Needed by yast2-keyboard
|
||||||
|
install skelcd-control-openSUSE # Just pulled in for deps
|
||||||
|
install cracklib-dict-full
|
||||||
|
|
||||||
|
# Fonts for the installation (taken from installation-images)
|
||||||
|
install thai-fonts
|
||||||
|
install lklug-fonts
|
||||||
|
install indic-fonts
|
||||||
|
install arabic-kacst-fonts
|
||||||
|
# too big
|
||||||
|
# install un-fonts
|
||||||
|
# install ipa-gothic-fonts
|
82
Leap-GNOME/list-kde.sh
Normal file
82
Leap-GNOME/list-kde.sh
Normal file
@ -0,0 +1,82 @@
|
|||||||
|
buildignore gvfs
|
||||||
|
buildignore libreoffice-icon-theme-galaxy
|
||||||
|
buildignore libreoffice-icon-theme-hicontrast
|
||||||
|
buildignore libreoffice-icon-theme-tango
|
||||||
|
buildignore libreoffice-base-drivers-mysql
|
||||||
|
buildignore libreoffice-pyuno
|
||||||
|
buildignore cairomm
|
||||||
|
buildignore evolution-data-server
|
||||||
|
buildignore notification-daemon
|
||||||
|
buildignore gdm
|
||||||
|
buildignore akregator
|
||||||
|
buildignore ImageMagick
|
||||||
|
install patterns-kde-kde
|
||||||
|
installPattern kde
|
||||||
|
install plasma5-workspace-branding-openSUSE
|
||||||
|
install baloo5-tools
|
||||||
|
install NetworkManager
|
||||||
|
# Don't add libreoffice for now, too large
|
||||||
|
buildignore libreoffice
|
||||||
|
buildignore libreoffice-icon-themes
|
||||||
|
buildignore libreoffice-icon-theme-breeze
|
||||||
|
buildignore kdenetwork4-filesharing
|
||||||
|
buildignore gnome-keyring
|
||||||
|
|
||||||
|
# Packages for the installer
|
||||||
|
source "$PWD/list-installer.sh"
|
||||||
|
|
||||||
|
buildignore oxygen5-icon-theme-large
|
||||||
|
# Needs ibus data files and color emoji fonts, too big.
|
||||||
|
buildignore plasma5-desktop-emojier
|
||||||
|
|
||||||
|
# Resolve have-choice
|
||||||
|
install plasma-nm5
|
||||||
|
install phonon4qt5-backend-gstreamer
|
||||||
|
buildignore ispell
|
||||||
|
|
||||||
|
# No fun allowed
|
||||||
|
buildignore patterns-kde-kde_games
|
||||||
|
# No PIM
|
||||||
|
buildignore patterns-kde-kde_pim
|
||||||
|
# Not really useful here, except for kcharselect.
|
||||||
|
buildignore patterns-kde-kde_utilities
|
||||||
|
install kcharselect
|
||||||
|
# Ignore
|
||||||
|
buildignore plasma-nm5-openconnect
|
||||||
|
buildignore plasma-nm5-openvpn
|
||||||
|
|
||||||
|
# Pulls in docbook and friends, ~50MiB.
|
||||||
|
# Excludedocs is enabled, so documentation is broken anyway
|
||||||
|
buildignore kdoctools
|
||||||
|
|
||||||
|
# Moved here from list-common.sh, too big for x11
|
||||||
|
install xf86-video-vmware i686,x86_64
|
||||||
|
|
||||||
|
buildignore digikam
|
||||||
|
buildignore gdb
|
||||||
|
buildignore hugin
|
||||||
|
buildignore icewm
|
||||||
|
buildignore kmahjongg-lang
|
||||||
|
buildignore konversation-lang
|
||||||
|
buildignore libproxy1-pacrunner-webkit
|
||||||
|
buildignore vlc
|
||||||
|
buildignore vlc-noX
|
||||||
|
buildignore vlc-qt
|
||||||
|
buildignore vlc-lang
|
||||||
|
buildignore kipi-plugins
|
||||||
|
|
||||||
|
# Upstream branding, not used by default and HUGE
|
||||||
|
if [ "$distro" != "leap" ]; then
|
||||||
|
buildignore breeze5-wallpapers
|
||||||
|
fi
|
||||||
|
|
||||||
|
install partitionmanager
|
||||||
|
|
||||||
|
# Moved here from list-common.sh. cyrus-sasl is needed by Pidgin in Xfce Live CD
|
||||||
|
buildignore cyrus-sasl
|
||||||
|
|
||||||
|
# From rest_cd_core
|
||||||
|
install alsa-firmware
|
||||||
|
|
||||||
|
# From x11_enhanced, but that pattern can't be installed
|
||||||
|
install opensuse-welcome
|
131
Leap-GNOME/list-x11.sh
Normal file
131
Leap-GNOME/list-x11.sh
Normal file
@ -0,0 +1,131 @@
|
|||||||
|
buildignore NetworkManager-lang
|
||||||
|
buildignore NetworkManager-applet-lang
|
||||||
|
buildignore PackageKit
|
||||||
|
buildignore samba-libs
|
||||||
|
buildignore release-notes-openSUSE
|
||||||
|
buildignore gnome-themes-accessibility
|
||||||
|
buildignore xlockmore
|
||||||
|
buildignore unzip-doc
|
||||||
|
buildignore gtk2-immodule-inuktitut
|
||||||
|
buildignore gtk2-immodule-thai
|
||||||
|
buildignore gtk2-immodule-vietnamese
|
||||||
|
buildignore gtk2-lang
|
||||||
|
buildignore gtk3-immodule-inuktitut
|
||||||
|
buildignore gtk3-immodule-thai
|
||||||
|
buildignore gtk3-immodule-vietnamese
|
||||||
|
buildignore gtk3-lang
|
||||||
|
buildignore evince-lang
|
||||||
|
buildignore hexchat-lang
|
||||||
|
buildignore nano-lang
|
||||||
|
buildignore zenity-lang
|
||||||
|
buildignore gsettings-desktop-schema-lang
|
||||||
|
buildignore gvfs-lang
|
||||||
|
buildignore libstorage-ng-lang
|
||||||
|
buildignore joe
|
||||||
|
buildignore libgphoto2-6-lang
|
||||||
|
buildignore alsa
|
||||||
|
buildignore alsa-firmware
|
||||||
|
buildignore alsa-plugins
|
||||||
|
buildignore xscreensaver
|
||||||
|
buildignore PackageKit-gstreamer-plugin
|
||||||
|
buildignore ImageMagick
|
||||||
|
buildignore awesfx
|
||||||
|
buildignore sbl
|
||||||
|
buildignore gnome-online-accounts
|
||||||
|
buildignore snapper
|
||||||
|
|
||||||
|
buildignore Mesa-libva
|
||||||
|
|
||||||
|
# No python2 necessary
|
||||||
|
buildignore python-base
|
||||||
|
buildignore python38-pip
|
||||||
|
|
||||||
|
# Pulls in libpython2_7
|
||||||
|
buildignore libpeas-loader-python
|
||||||
|
|
||||||
|
buildignore aspell-en
|
||||||
|
buildignore ModemManager
|
||||||
|
buildignore yast2-printer
|
||||||
|
buildignore avahi
|
||||||
|
buildignore fprintd
|
||||||
|
buildignore accountsservice
|
||||||
|
buildignore MozillaFirefox
|
||||||
|
buildignore tcpdump
|
||||||
|
|
||||||
|
install gparted
|
||||||
|
install epiphany
|
||||||
|
# Really ran of out space
|
||||||
|
buildignore gparted-lang
|
||||||
|
buildignore epiaphy-lang
|
||||||
|
buildignore iso-codes-lang
|
||||||
|
buildignore glib2-lang
|
||||||
|
buildignore thunar-lang
|
||||||
|
buildignore xfce4-settings-lang
|
||||||
|
buildignore xfce4-panel-lang
|
||||||
|
buildignore xfce-terminal-lang
|
||||||
|
buildignore exo-lang
|
||||||
|
buildignore xfdesktop-lang
|
||||||
|
buildignore xfce4-power-manager-lang
|
||||||
|
buildignore noto-sans-cjk-fonts
|
||||||
|
buildignore man-pages-posix
|
||||||
|
buildignore libvulkan_radeon
|
||||||
|
buildignore man
|
||||||
|
buildignore groff
|
||||||
|
buildignore libqt5-qttranslations
|
||||||
|
buildignore plymouth
|
||||||
|
buildignore 7zip
|
||||||
|
|
||||||
|
# tumbler -> libgepup uses libwebkit2gtk-4_0-37, while epiphany uses libwebkit2gtk-4_1-0.
|
||||||
|
# We can't have both, too big.
|
||||||
|
buildignore tumbler
|
||||||
|
# ristretto is not that useful without tumbler
|
||||||
|
buildignore ristretto
|
||||||
|
|
||||||
|
# Moved here from list-common.sh. cyrus-sasl is needed by Pidgin in Xfce Live CD
|
||||||
|
buildignore cyrus-sasl
|
||||||
|
|
||||||
|
# Moved here from list-common.sh. Needed by createrepo_c, which is needed for libzypp-plugin-appdata
|
||||||
|
buildignore deltarpm
|
||||||
|
|
||||||
|
# Too big and not really useful here
|
||||||
|
buildignore Mesa-dri-nouveau
|
||||||
|
buildignore libvdpau_nouveau
|
||||||
|
|
||||||
|
# Previously required by rest_cd_x11
|
||||||
|
install patterns-xfce-xfce_basis
|
||||||
|
installPattern xfce_basis
|
||||||
|
install evince
|
||||||
|
install evince-plugin-pdfdocument
|
||||||
|
install file-roller
|
||||||
|
install gparted
|
||||||
|
install hexchat
|
||||||
|
install leafpad
|
||||||
|
install lightdm
|
||||||
|
install lightdm-gtk-greeter
|
||||||
|
install photorec
|
||||||
|
install thunar
|
||||||
|
install thunar-volman
|
||||||
|
install xfce4-appfinder
|
||||||
|
install xfce4-notifyd
|
||||||
|
install xfce4-panel
|
||||||
|
install xfce4-power-manager
|
||||||
|
install xfce4-session
|
||||||
|
install xfce4-settings
|
||||||
|
install xfconf
|
||||||
|
install xfdesktop
|
||||||
|
install xfwm4
|
||||||
|
|
||||||
|
# Previously recommended by rest_cd_x11
|
||||||
|
install dbus-1-x11
|
||||||
|
install desktop-file-utils
|
||||||
|
install libgnomesu
|
||||||
|
install libxfce4ui-tools
|
||||||
|
install libyui-qt-pkg
|
||||||
|
install pinentry-gtk2
|
||||||
|
install shared-mime-info
|
||||||
|
install xdg-user-dirs-gtk
|
||||||
|
install xdg-utils
|
||||||
|
install NetworkManager-applet
|
||||||
|
install xfce4-panel-plugin-xkb
|
||||||
|
install xfce4-terminal
|
||||||
|
install yast2-control-center-qt
|
54
Leap-GNOME/list-xfce.sh
Normal file
54
Leap-GNOME/list-xfce.sh
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
install branding-openSUSE
|
||||||
|
install yast2-trans-stats
|
||||||
|
install patterns-xfce-xfce
|
||||||
|
installPattern xfce
|
||||||
|
buildignore gnome-themes-accessibility
|
||||||
|
buildignore xlockmore
|
||||||
|
buildignore unzip-doc
|
||||||
|
buildignore gtk2-immodule-inuktitut
|
||||||
|
buildignore gtk2-immodule-thai
|
||||||
|
buildignore gtk2-immodule-vietnamese
|
||||||
|
buildignore gtk3-immodule-inuktitut
|
||||||
|
buildignore gtk3-immodule-thai
|
||||||
|
buildignore gtk3-immodule-vietnamese
|
||||||
|
buildignore awesfx
|
||||||
|
buildignore sbl
|
||||||
|
buildignore gnome-online-accounts
|
||||||
|
|
||||||
|
# Packages for the installer
|
||||||
|
source "$PWD/list-installer.sh"
|
||||||
|
|
||||||
|
buildignore aspell-en
|
||||||
|
install libxslt-tools
|
||||||
|
|
||||||
|
# Remove useless xfce panel plugins
|
||||||
|
buildignore xfce4-panel-plugin-xkb
|
||||||
|
buildignore xfce4-panel-plugin-notes
|
||||||
|
buildignore engrampa-lang
|
||||||
|
|
||||||
|
# Remove Libreoffice as it's too big
|
||||||
|
buildignore libreoffice
|
||||||
|
|
||||||
|
# Save a bit of space
|
||||||
|
buildignore gdb
|
||||||
|
|
||||||
|
buildignore gimp
|
||||||
|
buildignore pidgin
|
||||||
|
|
||||||
|
# Pulls in sane-backends
|
||||||
|
buildignore simple-scan
|
||||||
|
|
||||||
|
# Moved here from list-common.sh, too big for x11
|
||||||
|
install xf86-video-vmware i686,x86_64
|
||||||
|
|
||||||
|
# make sure pdf support for evince is installed
|
||||||
|
install evince-plugin-pdfdocument
|
||||||
|
|
||||||
|
# From rest_cd_core
|
||||||
|
install alsa-firmware
|
||||||
|
|
||||||
|
# Not compatible with GNOME 41 (nothing provides typelib(Cheese) = 3.0)
|
||||||
|
buildignore mugshot
|
||||||
|
|
||||||
|
# From x11_enhanced, but that pattern can't be installed
|
||||||
|
install opensuse-welcome
|
28
Leap-GNOME/pkg-diff.sh
Normal file
28
Leap-GNOME/pkg-diff.sh
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
if [ $# -ne 2 ]; then
|
||||||
|
printf "Show a diff of installed packages in the various flavors.\nUsage: $0 project arch\n"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
project=$1
|
||||||
|
arch=$2
|
||||||
|
|
||||||
|
fetch_pkglist() {
|
||||||
|
local project=$1
|
||||||
|
local package=$2
|
||||||
|
local repo=$3
|
||||||
|
local arch=$4
|
||||||
|
local binaryname=$(osc ls -b ${project} ${package} -a ${arch} -r ${repo} | grep .packages | xargs)
|
||||||
|
|
||||||
|
osc api /build/${project}/${repo}/${arch}/${package}/${binaryname} | awk -F\| '{ printf "%s-%s-%s\n", $1, $3, $4 }' | sort -u
|
||||||
|
}
|
||||||
|
|
||||||
|
tmpdir=$(mktemp -d)
|
||||||
|
trap 'rm -rf ${tmpdir}' EXIT
|
||||||
|
|
||||||
|
for i in {x11,xfce,kde,gnome}; do
|
||||||
|
fetch_pkglist openSUSE:Factory:Live livecd-tumbleweed-$i images ${arch} > ${tmpdir}/list-old
|
||||||
|
fetch_pkglist ${project} livecd-tumbleweed-$i openSUSE_Tumbleweed ${arch} > ${tmpdir}/list-new
|
||||||
|
echo "$i"
|
||||||
|
diff -u ${tmpdir}/list-{old,new}
|
||||||
|
done
|
66
Leap-GNOME/pre-checkin.sh
Normal file
66
Leap-GNOME/pre-checkin.sh
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
set -u
|
||||||
|
|
||||||
|
install() {
|
||||||
|
if [ -n "${2-}" ]; then
|
||||||
|
PACKAGES="$PACKAGES\n <package name=\"$1\" arch=\"$2\"/>"
|
||||||
|
else
|
||||||
|
PACKAGES="$PACKAGES\n <package name=\"$1\"/>"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
buildignore() {
|
||||||
|
# Normally, <package name="foo" onlyarch="skipit"/> should work,
|
||||||
|
# but https://github.com/openSUSE/obs-build/issues/420 requires a workaround
|
||||||
|
## Due to "--ignoreignore--" this has no effect either, so workaround the workaround
|
||||||
|
## by using <ignore/>, which gets ignored by OBS completely...
|
||||||
|
if [ -n "${2-}" ]; then
|
||||||
|
PACKAGES="$PACKAGES\n <package name=\"aaa_base\" replaces=\"$1\" arch=\"$2\"/>"
|
||||||
|
PACKAGES="$PACKAGES\n <ignore name=\"$1\" arch=\"$2\"/>"
|
||||||
|
else
|
||||||
|
PACKAGES="$PACKAGES\n <package name=\"aaa_base\" replaces=\"$1\"/>"
|
||||||
|
PACKAGES="$PACKAGES\n <ignore name=\"$1\"/>"
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
installPattern() {
|
||||||
|
PACKAGES="$PACKAGES\n <namedCollection name=\"$1\"/>"
|
||||||
|
}
|
||||||
|
|
||||||
|
archive() {
|
||||||
|
PACKAGES="$PACKAGES\n <archive name=\"$1\"/>"
|
||||||
|
}
|
||||||
|
|
||||||
|
for distro in leap tumbleweed; do
|
||||||
|
distroname="openSUSE Tumbleweed"
|
||||||
|
bootsplash="bgrt"
|
||||||
|
releaseprefix="openSUSE"
|
||||||
|
if [ "${distro}" = "leap" ]; then
|
||||||
|
distroname="openSUSE Leap %OS_VERSION_ID%"
|
||||||
|
# This changes every few weeks, apparently.
|
||||||
|
#releaseprefix="Leap"
|
||||||
|
fi
|
||||||
|
|
||||||
|
for flavor in gnome kde xfce x11; do
|
||||||
|
uppercaseflavor="$(echo "${flavor}" | tr [:lower:] [:upper:])"
|
||||||
|
|
||||||
|
if [ "${flavor}" = "x11" ]; then
|
||||||
|
name="${distroname} Rescue CD"
|
||||||
|
else
|
||||||
|
name="${distroname} ${uppercaseflavor} Live"
|
||||||
|
fi
|
||||||
|
|
||||||
|
PACKAGES="\n <!-- list-common.sh -->"
|
||||||
|
. "$PWD/list-common.sh"
|
||||||
|
PACKAGES="$PACKAGES\n\n <!-- list-${flavor}.sh -->"
|
||||||
|
. "$PWD/list-${flavor}.sh"
|
||||||
|
|
||||||
|
sed "s#@FLAVOR@#${flavor}#g;\
|
||||||
|
s#@NAME@#${name// /-}#g;\
|
||||||
|
s#@DISPLAYNAME@#${name}#g;\
|
||||||
|
s#@VOLID@#${name// /_}#g;\
|
||||||
|
s#@BOOTSPLASH@#${bootsplash}#g;\
|
||||||
|
s#@RELEASEPREFIX@#${releaseprefix}#g;\
|
||||||
|
s#@PACKAGES@#${PACKAGES}#g;" livecd.kiwi.in > livecd-${distro}-${flavor}.kiwi
|
||||||
|
done
|
||||||
|
done
|
651
Leap-GNOME/selfinstall-leap-gnome-csb.kiwi
Normal file
651
Leap-GNOME/selfinstall-leap-gnome-csb.kiwi
Normal file
@ -0,0 +1,651 @@
|
|||||||
|
<?xml version="1.0"?>
|
||||||
|
|
||||||
|
<!-- OBS-ExclusiveArch: aarch64 i586 x86_64 -->
|
||||||
|
|
||||||
|
<image schemaversion="6.5" name="openSUSE-Leap-CSB-%OS_VERSION_ID%-GNOME-SelfInstall" displayname="openSUSE Leap %OS_VERSION_ID% GNOME Live">
|
||||||
|
<description type="system">
|
||||||
|
<author>openSUSE Project</author>
|
||||||
|
<contact>opensuse@opensuse.org</contact>
|
||||||
|
<specification>openSUSE Live system</specification>
|
||||||
|
</description>
|
||||||
|
<profiles>
|
||||||
|
<!--<profile name="noEFI" description="no EFI for x86" import="true" arch="i686"/>
|
||||||
|
<profile name="EFI" description="EFI" import="true" arch="x86_64,aarch64"/>-->
|
||||||
|
<profile name="SelfInstall" description="SelfInstalling Image for SUSE Employees" import="true" arch="x86_64,aarch64"/>
|
||||||
|
</profiles>
|
||||||
|
<preferences profiles="EFI">
|
||||||
|
<type primary="true" bootprofile="default" kernelcmdline="splash=silent quiet systemd.show_status=yes" flags="overlay" hybrid="true" hybridpersistent="true" hybridpersistent_filesystem="ext4" image="iso" firmware="uefi" volid="openSUSE_Leap_%OS_VERSION_ID%_GNOME_Live" mediacheck="true"/>
|
||||||
|
<version>2.8.0</version>
|
||||||
|
<bootloader-theme>openSUSE</bootloader-theme>
|
||||||
|
<bootsplash-theme>bgrt</bootsplash-theme>
|
||||||
|
<packagemanager>zypper</packagemanager>
|
||||||
|
<rpm-check-signatures>false</rpm-check-signatures>
|
||||||
|
<locale>en_US</locale>
|
||||||
|
<rpm-excludedocs>true</rpm-excludedocs>
|
||||||
|
</preferences>
|
||||||
|
<preferences profiles="noEFI">
|
||||||
|
<type primary="true" bootprofile="default" kernelcmdline="splash=silent quiet systemd.show_status=yes" flags="overlay" hybrid="true" hybridpersistent="true" hybridpersistent_filesystem="ext4" image="iso" firmware="bios" volid="openSUSE_Leap_%OS_VERSION_ID%_GNOME_Live" mediacheck="true"/>
|
||||||
|
<version>2.8.0</version>
|
||||||
|
<bootloader-theme>openSUSE</bootloader-theme>
|
||||||
|
<bootsplash-theme>bgrt</bootsplash-theme>
|
||||||
|
<packagemanager>zypper</packagemanager>
|
||||||
|
<rpm-check-signatures>false</rpm-check-signatures>
|
||||||
|
<locale>en_US</locale>
|
||||||
|
<rpm-excludedocs>true</rpm-excludedocs>
|
||||||
|
</preferences>
|
||||||
|
<preferences profiles="SelfInstall">
|
||||||
|
<version>16.0.0</version>
|
||||||
|
<packagemanager>zypper</packagemanager>
|
||||||
|
<bootloader-theme>openSUSE</bootloader-theme>
|
||||||
|
<bootsplash-theme>bgrt</bootsplash-theme>
|
||||||
|
<rpm-excludedocs>true</rpm-excludedocs>
|
||||||
|
<locale>en_US</locale>
|
||||||
|
<type
|
||||||
|
image="oem"
|
||||||
|
filesystem="btrfs"
|
||||||
|
firmware="uefi"
|
||||||
|
initrd_system="dracut"
|
||||||
|
installiso="true"
|
||||||
|
bootpartition="true"
|
||||||
|
luks="suseit"
|
||||||
|
bootkernel="custom"
|
||||||
|
devicepersistency="by-uuid"
|
||||||
|
btrfs_root_is_snapshot="true"
|
||||||
|
btrfs_root_is_readonly_snapshot="false"
|
||||||
|
btrfs_quota_groups="true"
|
||||||
|
>
|
||||||
|
<bootloader name="grub2" console="gfxterm" />
|
||||||
|
<systemdisk>
|
||||||
|
<volume name="home"/>
|
||||||
|
<volume name="root"/>
|
||||||
|
<volume name="tmp"/>
|
||||||
|
<volume name="opt"/>
|
||||||
|
<volume name="srv"/>
|
||||||
|
<volume name="boot/grub2/i386-pc"/>
|
||||||
|
<volume name="boot/grub2/x86_64-efi" mountpoint="boot/grub2/x86_64-efi"/>
|
||||||
|
<volume name="boot/writable"/>
|
||||||
|
<volume name="usr/local"/>
|
||||||
|
<volume name="var" copy_on_write="false"/>
|
||||||
|
</systemdisk>
|
||||||
|
<oemconfig>
|
||||||
|
<oem-device-filter>/dev/ram</oem-device-filter>
|
||||||
|
<oem-multipath-scan>false</oem-multipath-scan>
|
||||||
|
</oemconfig>
|
||||||
|
<machine memory="512" guestOS="suse" HWversion="4">
|
||||||
|
<vmdisk id="0" controller="ide"/>
|
||||||
|
<vmnic driver="e1000" interface="0" mode="bridged"/>
|
||||||
|
</machine>
|
||||||
|
</type>
|
||||||
|
</preferences>
|
||||||
|
<users>
|
||||||
|
<user groups="root" name="root" password="" home="/root"/>
|
||||||
|
</users>
|
||||||
|
<packages type="image" profiles="SelfInstall,EFI,noEFI" patternType="plusRecommended">
|
||||||
|
<package name="kernel-default"/>
|
||||||
|
<package name="gfxboot-branding-openSUSE" bootinclude="true" bootdelete="true" arch="i686"/>
|
||||||
|
<package name="grub2-branding-openSUSE" bootinclude="true"/>
|
||||||
|
<!-- workaround for bnc#892087 -->
|
||||||
|
<package name="e2fsprogs" bootinclude="true"/>
|
||||||
|
<package name="pam"/>
|
||||||
|
<package name="pam-config"/>
|
||||||
|
<package name="udev"/>
|
||||||
|
<package name="aaa_base"/>
|
||||||
|
<package name="tar"/>
|
||||||
|
<package name="patch"/>
|
||||||
|
<package name="zypper"/>
|
||||||
|
<package name="grub2-x86_64-efi" arch="x86_64"/>
|
||||||
|
<package name="grub2-arm64-efi" arch="aarch64"/>
|
||||||
|
<package name="memtest86+" arch="i686,x86_64"/>
|
||||||
|
<package name="live-langset-data"/>
|
||||||
|
<package name="live-add-yast-repos"/>
|
||||||
|
<!-- used by config.sh -->
|
||||||
|
<package name="fdupes"/>
|
||||||
|
<package name="zstd"/>
|
||||||
|
<archive name="livecd-udev.tar.xz"/>
|
||||||
|
|
||||||
|
<!-- list-common.sh -->
|
||||||
|
<package name="aaa_base" replaces="poppler-data"/>
|
||||||
|
<ignore name="poppler-data"/>
|
||||||
|
<package name="aaa_base" replaces="tin"/>
|
||||||
|
<ignore name="tin"/>
|
||||||
|
<package name="aaa_base" replaces="desktop-translations"/>
|
||||||
|
<ignore name="desktop-translations"/>
|
||||||
|
<package name="aaa_base" replaces="ft2demos"/>
|
||||||
|
<ignore name="ft2demos"/>
|
||||||
|
<package name="aaa_base" replaces="gimp-help"/>
|
||||||
|
<ignore name="gimp-help"/>
|
||||||
|
<package name="aaa_base" replaces="gimp-lang"/>
|
||||||
|
<ignore name="gimp-lang"/>
|
||||||
|
<package name="aaa_base" replaces="libreoffice-base"/>
|
||||||
|
<ignore name="libreoffice-base"/>
|
||||||
|
<package name="aaa_base" replaces="libreoffice-mailmerge"/>
|
||||||
|
<ignore name="libreoffice-mailmerge"/>
|
||||||
|
<package name="aaa_base" replaces="libreoffice-math"/>
|
||||||
|
<ignore name="libreoffice-math"/>
|
||||||
|
<package name="aaa_base" replaces="libreoffice-filters-optional"/>
|
||||||
|
<ignore name="libreoffice-filters-optional"/>
|
||||||
|
<package name="aaa_base" replaces="libreoffice-pyuno"/>
|
||||||
|
<ignore name="libreoffice-pyuno"/>
|
||||||
|
<package name="aaa_base" replaces="readline-doc"/>
|
||||||
|
<ignore name="readline-doc"/>
|
||||||
|
<package name="aaa_base" replaces="graphviz"/>
|
||||||
|
<ignore name="graphviz"/>
|
||||||
|
<package name="aaa_base" replaces="linux-kernel-headers"/>
|
||||||
|
<ignore name="linux-kernel-headers"/>
|
||||||
|
<package name="aaa_base" replaces="bash-doc"/>
|
||||||
|
<ignore name="bash-doc"/>
|
||||||
|
<package name="aaa_base" replaces="gimp-plugins-python"/>
|
||||||
|
<ignore name="gimp-plugins-python"/>
|
||||||
|
<package name="aaa_base" replaces="patterns-openSUSE-gnome_basis_opt"/>
|
||||||
|
<ignore name="patterns-openSUSE-gnome_basis_opt"/>
|
||||||
|
<package name="aaa_base" replaces="patterns-openSUSE-gnome_admin"/>
|
||||||
|
<ignore name="patterns-openSUSE-gnome_admin"/>
|
||||||
|
<package name="aaa_base" replaces="patterns-openSUSE-gnome_multimedia_opt"/>
|
||||||
|
<ignore name="patterns-openSUSE-gnome_multimedia_opt"/>
|
||||||
|
<package name="aaa_base" replaces="patterns-openSUSE-gnome_imaging_opt"/>
|
||||||
|
<ignore name="patterns-openSUSE-gnome_imaging_opt"/>
|
||||||
|
<package name="aaa_base" replaces="patterns-openSUSE-gnome_office_opt"/>
|
||||||
|
<ignore name="patterns-openSUSE-gnome_office_opt"/>
|
||||||
|
<package name="aaa_base" replaces="patterns-openSUSE-apparmor_opt"/>
|
||||||
|
<ignore name="patterns-openSUSE-apparmor_opt"/>
|
||||||
|
<package name="aaa_base" replaces="patterns-openSUSE-enhanced_base_opt"/>
|
||||||
|
<ignore name="patterns-openSUSE-enhanced_base_opt"/>
|
||||||
|
<package name="aaa_base" replaces="patterns-openSUSE-fonts_opt"/>
|
||||||
|
<ignore name="patterns-openSUSE-fonts_opt"/>
|
||||||
|
<package name="aaa_base" replaces="patterns-openSUSE-imaging_opt"/>
|
||||||
|
<ignore name="patterns-openSUSE-imaging_opt"/>
|
||||||
|
<package name="aaa_base" replaces="patterns-openSUSE-kde_utilities_opt"/>
|
||||||
|
<ignore name="patterns-openSUSE-kde_utilities_opt"/>
|
||||||
|
<package name="aaa_base" replaces="patterns-openSUSE-multimedia_opt"/>
|
||||||
|
<ignore name="patterns-openSUSE-multimedia_opt"/>
|
||||||
|
<package name="aaa_base" replaces="patterns-openSUSE-non_oss_opt"/>
|
||||||
|
<ignore name="patterns-openSUSE-non_oss_opt"/>
|
||||||
|
<package name="aaa_base" replaces="patterns-openSUSE-office_opt"/>
|
||||||
|
<ignore name="patterns-openSUSE-office_opt"/>
|
||||||
|
<package name="aaa_base" replaces="patterns-openSUSE-x11_opt"/>
|
||||||
|
<ignore name="patterns-openSUSE-x11_opt"/>
|
||||||
|
<package name="aaa_base" replaces="patterns-gnome-gnome_basis_opt"/>
|
||||||
|
<ignore name="patterns-gnome-gnome_basis_opt"/>
|
||||||
|
<package name="aaa_base" replaces="patterns-gmome-gnome_admin"/>
|
||||||
|
<ignore name="patterns-gmome-gnome_admin"/>
|
||||||
|
<package name="aaa_base" replaces="patterns-gnome-gnome_multimedia_opt"/>
|
||||||
|
<ignore name="patterns-gnome-gnome_multimedia_opt"/>
|
||||||
|
<package name="aaa_base" replaces="patterns-gnome-gnome_imaging_opt"/>
|
||||||
|
<ignore name="patterns-gnome-gnome_imaging_opt"/>
|
||||||
|
<package name="aaa_base" replaces="patterns-gnome-gnome_office_opt"/>
|
||||||
|
<ignore name="patterns-gnome-gnome_office_opt"/>
|
||||||
|
<package name="aaa_base" replaces="patterns-base-apparmor_opt"/>
|
||||||
|
<ignore name="patterns-base-apparmor_opt"/>
|
||||||
|
<package name="aaa_base" replaces="patterns-base-enhanced_base_opt"/>
|
||||||
|
<ignore name="patterns-base-enhanced_base_opt"/>
|
||||||
|
<package name="aaa_base" replaces="patterns-fonts-fonts_opt"/>
|
||||||
|
<ignore name="patterns-fonts-fonts_opt"/>
|
||||||
|
<package name="aaa_base" replaces="patterns-desktop-imaging_opt"/>
|
||||||
|
<ignore name="patterns-desktop-imaging_opt"/>
|
||||||
|
<package name="aaa_base" replaces="patterns-kde-kde_utilities_opt"/>
|
||||||
|
<ignore name="patterns-kde-kde_utilities_opt"/>
|
||||||
|
<package name="aaa_base" replaces="patterns-desktop-multimedia_opt"/>
|
||||||
|
<ignore name="patterns-desktop-multimedia_opt"/>
|
||||||
|
<package name="aaa_base" replaces="patterns-openSUSE-non_oss_opt"/>
|
||||||
|
<ignore name="patterns-openSUSE-non_oss_opt"/>
|
||||||
|
<package name="aaa_base" replaces="patterns-office-office_opt"/>
|
||||||
|
<ignore name="patterns-office-office_opt"/>
|
||||||
|
<package name="aaa_base" replaces="patterns-base-x11_opt"/>
|
||||||
|
<ignore name="patterns-base-x11_opt"/>
|
||||||
|
<package name="aaa_base" replaces="patterns-base-x11_enhanced"/>
|
||||||
|
<ignore name="patterns-base-x11_enhanced"/>
|
||||||
|
<package name="aaa_base" replaces="make"/>
|
||||||
|
<ignore name="make"/>
|
||||||
|
<package name="aaa_base" replaces="netpbm"/>
|
||||||
|
<ignore name="netpbm"/>
|
||||||
|
<package name="aaa_base" replaces="p7zip-full"/>
|
||||||
|
<ignore name="p7zip-full"/>
|
||||||
|
<package name="aaa_base" replaces="busybox-static"/>
|
||||||
|
<ignore name="busybox-static"/>
|
||||||
|
<package name="aaa_base" replaces="inxi"/>
|
||||||
|
<ignore name="inxi"/>
|
||||||
|
<package name="aaa_base" replaces="sane-backends"/>
|
||||||
|
<ignore name="sane-backends"/>
|
||||||
|
<package name="branding-openSUSE"/>
|
||||||
|
<package name="gfxboot" arch="i686"/>
|
||||||
|
<package name="shim" arch="x86_64"/>
|
||||||
|
<package name="aaa_base" replaces="glibc-32bit"/>
|
||||||
|
<ignore name="glibc-32bit"/>
|
||||||
|
<package name="aaa_base" replaces="libvdpau_r300"/>
|
||||||
|
<ignore name="libvdpau_r300"/>
|
||||||
|
<package name="aaa_base" replaces="libvdpau_radeonsi"/>
|
||||||
|
<ignore name="libvdpau_radeonsi"/>
|
||||||
|
<package name="aaa_base" replaces="libvdpau_r600"/>
|
||||||
|
<ignore name="libvdpau_r600"/>
|
||||||
|
<package name="aaa_base" replaces="pavucontrol"/>
|
||||||
|
<ignore name="pavucontrol"/>
|
||||||
|
<package name="aaa_base" replaces="libqmi-tools"/>
|
||||||
|
<ignore name="libqmi-tools"/>
|
||||||
|
<package name="aaa_base" replaces="python*-pip"/>
|
||||||
|
<ignore name="python*-pip"/>
|
||||||
|
<package name="aaa_base" replaces="multipath-tools-rbd"/>
|
||||||
|
<ignore name="multipath-tools-rbd"/>
|
||||||
|
<package name="aaa_base" replaces="acpica"/>
|
||||||
|
<ignore name="acpica"/>
|
||||||
|
<package name="aaa_base" replaces="xorg-x11-Xvnc"/>
|
||||||
|
<ignore name="xorg-x11-Xvnc"/>
|
||||||
|
<package name="aaa_base" replaces="cabextract"/>
|
||||||
|
<ignore name="cabextract"/>
|
||||||
|
<package name="aaa_base" replaces="sssd"/>
|
||||||
|
<ignore name="sssd"/>
|
||||||
|
<package name="aaa_base" replaces="db-utils"/>
|
||||||
|
<ignore name="db-utils"/>
|
||||||
|
<package name="aaa_base" replaces="dnsmasq"/>
|
||||||
|
<ignore name="dnsmasq"/>
|
||||||
|
<package name="aaa_base" replaces="fribidi"/>
|
||||||
|
<ignore name="fribidi"/>
|
||||||
|
<package name="aaa_base" replaces="ipmitool"/>
|
||||||
|
<ignore name="ipmitool"/>
|
||||||
|
<package name="aaa_base" replaces="irda"/>
|
||||||
|
<ignore name="irda"/>
|
||||||
|
<package name="aaa_base" replaces="lomoco"/>
|
||||||
|
<ignore name="lomoco"/>
|
||||||
|
<package name="aaa_base" replaces="mksh"/>
|
||||||
|
<ignore name="mksh"/>
|
||||||
|
<package name="aaa_base" replaces="cifs-utils"/>
|
||||||
|
<ignore name="cifs-utils"/>
|
||||||
|
<package name="aaa_base" replaces="gvfs-backend-samba"/>
|
||||||
|
<ignore name="gvfs-backend-samba"/>
|
||||||
|
<package name="aaa_base" replaces="xorg-x11"/>
|
||||||
|
<ignore name="xorg-x11"/>
|
||||||
|
<package name="aaa_base" replaces="xorg-x11-essentials"/>
|
||||||
|
<ignore name="xorg-x11-essentials"/>
|
||||||
|
<package name="aaa_base" replaces="xorg-x11-server-extra"/>
|
||||||
|
<ignore name="xorg-x11-server-extra"/>
|
||||||
|
<package name="xdm"/>
|
||||||
|
<package name="sysvinit-tools"/>
|
||||||
|
<package name="aaa_base" replaces="icewm"/>
|
||||||
|
<ignore name="icewm"/>
|
||||||
|
<package name="aaa_base" replaces="baekmuk-ttf-fonts"/>
|
||||||
|
<ignore name="baekmuk-ttf-fonts"/>
|
||||||
|
<package name="aaa_base" replaces="google-droid-fonts"/>
|
||||||
|
<ignore name="google-droid-fonts"/>
|
||||||
|
<package name="aaa_base" replaces="efont-unicode-bitmap-fonts"/>
|
||||||
|
<ignore name="efont-unicode-bitmap-fonts"/>
|
||||||
|
<package name="aaa_base" replaces="baekmuk-bitmap-fonts"/>
|
||||||
|
<ignore name="baekmuk-bitmap-fonts"/>
|
||||||
|
<package name="aaa_base" replaces="intlfonts-chinese-big-bitmap-fonts"/>
|
||||||
|
<ignore name="intlfonts-chinese-big-bitmap-fonts"/>
|
||||||
|
<package name="aaa_base" replaces="xorg-x11-fonts"/>
|
||||||
|
<ignore name="xorg-x11-fonts"/>
|
||||||
|
<package name="aaa_base" replaces="xorg-x11-fonts-legacy"/>
|
||||||
|
<ignore name="xorg-x11-fonts-legacy"/>
|
||||||
|
<package name="aaa_base" replaces="strace"/>
|
||||||
|
<ignore name="strace"/>
|
||||||
|
<package name="aaa_base" replaces="tcsh"/>
|
||||||
|
<ignore name="tcsh"/>
|
||||||
|
<package name="aaa_base" replaces="usbmuxd"/>
|
||||||
|
<ignore name="usbmuxd"/>
|
||||||
|
<package name="aaa_base" replaces="gnome-keyring-pam"/>
|
||||||
|
<ignore name="gnome-keyring-pam"/>
|
||||||
|
<package name="aaa_base" replaces="apparmor-docs"/>
|
||||||
|
<ignore name="apparmor-docs"/>
|
||||||
|
<package name="aaa_base" replaces="mutt-doc"/>
|
||||||
|
<ignore name="mutt-doc"/>
|
||||||
|
<package name="aaa_base" replaces="unar"/>
|
||||||
|
<ignore name="unar"/>
|
||||||
|
<package name="aaa_base" replaces="jing"/>
|
||||||
|
<ignore name="jing"/>
|
||||||
|
<package name="aaa_base" replaces="icedtea-web"/>
|
||||||
|
<ignore name="icedtea-web"/>
|
||||||
|
<package name="aaa_base" replaces="tigervnc"/>
|
||||||
|
<ignore name="tigervnc"/>
|
||||||
|
<package name="aaa_base" replaces="autofs"/>
|
||||||
|
<ignore name="autofs"/>
|
||||||
|
<package name="aaa_base" replaces="expect"/>
|
||||||
|
<ignore name="expect"/>
|
||||||
|
<package name="aaa_base" replaces="m4"/>
|
||||||
|
<ignore name="m4"/>
|
||||||
|
<package name="aaa_base" replaces="mutt"/>
|
||||||
|
<ignore name="mutt"/>
|
||||||
|
<package name="aaa_base" replaces="net-snmp"/>
|
||||||
|
<ignore name="net-snmp"/>
|
||||||
|
<package name="aaa_base" replaces="procmail"/>
|
||||||
|
<ignore name="procmail"/>
|
||||||
|
<package name="aaa_base" replaces="recode"/>
|
||||||
|
<ignore name="recode"/>
|
||||||
|
<package name="aaa_base" replaces="spax"/>
|
||||||
|
<ignore name="spax"/>
|
||||||
|
<package name="aaa_base" replaces="awesfx"/>
|
||||||
|
<ignore name="awesfx"/>
|
||||||
|
<package name="aaa_base" replaces="espeak"/>
|
||||||
|
<ignore name="espeak"/>
|
||||||
|
<package name="aaa_base" replaces="pam_mount"/>
|
||||||
|
<ignore name="pam_mount"/>
|
||||||
|
<package name="aaa_base" replaces="groff-full"/>
|
||||||
|
<ignore name="groff-full"/>
|
||||||
|
<package name="aaa_base" replaces="tuned"/>
|
||||||
|
<ignore name="tuned"/>
|
||||||
|
<package name="aaa_base" replaces="cups"/>
|
||||||
|
<ignore name="cups"/>
|
||||||
|
<package name="aaa_base" replaces="cups-client"/>
|
||||||
|
<ignore name="cups-client"/>
|
||||||
|
<package name="aaa_base" replaces="system-config-printer"/>
|
||||||
|
<ignore name="system-config-printer"/>
|
||||||
|
<package name="aaa_base" replaces="ghostscript"/>
|
||||||
|
<ignore name="ghostscript"/>
|
||||||
|
<package name="aaa_base" replaces="ghostscript-fonts-std"/>
|
||||||
|
<ignore name="ghostscript-fonts-std"/>
|
||||||
|
<package name="aaa_base" replaces="ghostscript-fonts-other"/>
|
||||||
|
<ignore name="ghostscript-fonts-other"/>
|
||||||
|
<package name="aaa_base" replaces="manufacturer-PPDs"/>
|
||||||
|
<ignore name="manufacturer-PPDs"/>
|
||||||
|
<package name="aaa_base" replaces="gutenprint"/>
|
||||||
|
<ignore name="gutenprint"/>
|
||||||
|
<package name="aaa_base" replaces="hplip-hpijs"/>
|
||||||
|
<ignore name="hplip-hpijs"/>
|
||||||
|
<package name="aaa_base" replaces="hplip"/>
|
||||||
|
<ignore name="hplip"/>
|
||||||
|
<package name="aaa_base" replaces="system-config-printer-applet"/>
|
||||||
|
<ignore name="system-config-printer-applet"/>
|
||||||
|
<package name="aaa_base" replaces="udev-configure-printer"/>
|
||||||
|
<ignore name="udev-configure-printer"/>
|
||||||
|
<package name="aaa_base" replaces="yast2-samba-client"/>
|
||||||
|
<ignore name="yast2-samba-client"/>
|
||||||
|
<package name="aaa_base" replaces="yast2-vpn"/>
|
||||||
|
<ignore name="yast2-vpn"/>
|
||||||
|
<package name="aaa_base" replaces="yast2-journal"/>
|
||||||
|
<ignore name="yast2-journal"/>
|
||||||
|
<package name="aaa_base" replaces="yast2-auth-client"/>
|
||||||
|
<ignore name="yast2-auth-client"/>
|
||||||
|
<package name="aaa_base" replaces="yast2-sudo"/>
|
||||||
|
<ignore name="yast2-sudo"/>
|
||||||
|
<package name="aaa_base" replaces="systemd-coredump"/>
|
||||||
|
<ignore name="systemd-coredump"/>
|
||||||
|
<package name="aaa_base" replaces="systemd-doc"/>
|
||||||
|
<ignore name="systemd-doc"/>
|
||||||
|
<package name="aaa_base" replaces="man-pages"/>
|
||||||
|
<ignore name="man-pages"/>
|
||||||
|
<package name="aaa_base" replaces="NetworkManager-vpnc-gnome"/>
|
||||||
|
<ignore name="NetworkManager-vpnc-gnome"/>
|
||||||
|
<package name="aaa_base" replaces="plasma-nm5-vpnc"/>
|
||||||
|
<ignore name="plasma-nm5-vpnc"/>
|
||||||
|
<package name="aaa_base" replaces="busybox-sendmail"/>
|
||||||
|
<ignore name="busybox-sendmail"/>
|
||||||
|
<package name="aaa_base" replaces="exim"/>
|
||||||
|
<ignore name="exim"/>
|
||||||
|
<package name="aaa_base" replaces="msmtp-mta"/>
|
||||||
|
<ignore name="msmtp-mta"/>
|
||||||
|
<package name="aaa_base" replaces="postfix"/>
|
||||||
|
<ignore name="postfix"/>
|
||||||
|
<package name="aaa_base" replaces="postfix-bdb"/>
|
||||||
|
<ignore name="postfix-bdb"/>
|
||||||
|
<package name="aaa_base" replaces="sendmail"/>
|
||||||
|
<ignore name="sendmail"/>
|
||||||
|
<package name="aaa_base" replaces="virtualbox-guest-tools"/>
|
||||||
|
<ignore name="virtualbox-guest-tools"/>
|
||||||
|
<package name="aaa_base" replaces="virtualbox-guest-x11"/>
|
||||||
|
<ignore name="virtualbox-guest-x11"/>
|
||||||
|
<package name="aaa_base" replaces="intel-gpu-tools"/>
|
||||||
|
<ignore name="intel-gpu-tools"/>
|
||||||
|
<package name="spice-vdagent"/>
|
||||||
|
<package name="aaa_base" replaces="open-vm-tools"/>
|
||||||
|
<ignore name="open-vm-tools"/>
|
||||||
|
<package name="aaa_base" replaces="usb_modeswitch"/>
|
||||||
|
<ignore name="usb_modeswitch"/>
|
||||||
|
<package name="aaa_base" replaces="gstreamer-plugins-rs"/>
|
||||||
|
<ignore name="gstreamer-plugins-rs"/>
|
||||||
|
<package name="aaa_base" replaces="vim-data"/>
|
||||||
|
<ignore name="vim-data"/>
|
||||||
|
<package name="patterns-yast-yast2_basis"/>
|
||||||
|
<namedCollection name="yast2_basis"/>
|
||||||
|
<package name="kernel-default"/>
|
||||||
|
<package name="kernel-firmware"/>
|
||||||
|
<package name="patterns-base-enhanced_base"/>
|
||||||
|
<namedCollection name="enhanced_base"/>
|
||||||
|
<package name="patterns-base-x11"/>
|
||||||
|
<namedCollection name="x11"/>
|
||||||
|
<namedCollection name="sw_management"/>
|
||||||
|
<package name="yast2-bootloader"/>
|
||||||
|
<package name="yast2-country"/>
|
||||||
|
<package name="yast2-hardware-detection"/>
|
||||||
|
<package name="yast2-network"/>
|
||||||
|
<package name="yast2-proxy"/>
|
||||||
|
<package name="yast2-storage-ng"/>
|
||||||
|
<package name="bcache-tools"/>
|
||||||
|
<package name="btrfsprogs"/>
|
||||||
|
<package name="cryptsetup"/>
|
||||||
|
<package name="device-mapper"/>
|
||||||
|
<package name="dmraid"/>
|
||||||
|
<package name="dosfstools"/>
|
||||||
|
<package name="e2fsprogs"/>
|
||||||
|
<package name="exfatprogs"/>
|
||||||
|
<package name="fcoe-utils"/>
|
||||||
|
<package name="jfsutils"/>
|
||||||
|
<package name="mdadm"/>
|
||||||
|
<package name="multipath-tools"/>
|
||||||
|
<package name="ntfs-3g"/>
|
||||||
|
<package name="ntfsprogs"/>
|
||||||
|
<package name="nvme-cli"/>
|
||||||
|
<package name="quota"/>
|
||||||
|
<package name="xfsdump"/>
|
||||||
|
<package name="xfsprogs"/>
|
||||||
|
<package name="adaptec-firmware"/>
|
||||||
|
<package name="atmel-firmware"/>
|
||||||
|
<package name="b43-fwcutter"/>
|
||||||
|
<package name="bluez-firmware"/>
|
||||||
|
<package name="crda"/>
|
||||||
|
<package name="dmidecode"/>
|
||||||
|
<package name="efibootmgr"/>
|
||||||
|
<package name="gtk2-branding-openSUSE"/>
|
||||||
|
<package name="ipw-firmware"/>
|
||||||
|
<package name="iw"/>
|
||||||
|
<package name="libatm1"/>
|
||||||
|
<package name="lsb-release"/>
|
||||||
|
<package name="lvm2"/>
|
||||||
|
<package name="memtest86+" arch="i686,x86_64"/>
|
||||||
|
<package name="mpt-firmware"/>
|
||||||
|
<package name="nano"/>
|
||||||
|
<package name="pptp"/>
|
||||||
|
<package name="quota"/>
|
||||||
|
<package name="rsync"/>
|
||||||
|
<package name="smartmontools"/>
|
||||||
|
<package name="smbios-utils-python" arch="i686,x86_64"/>
|
||||||
|
<package name="util-linux"/>
|
||||||
|
<package name="wireless-regdb"/>
|
||||||
|
<package name="wpa_supplicant"/>
|
||||||
|
<package name="xf86-video-ark"/>
|
||||||
|
<package name="xf86-video-ati"/>
|
||||||
|
<package name="xf86-video-chips"/>
|
||||||
|
<package name="xf86-video-fbdev"/>
|
||||||
|
<package name="xf86-video-i128"/>
|
||||||
|
<package name="xf86-video-mga"/>
|
||||||
|
<package name="xf86-video-neomagic"/>
|
||||||
|
<package name="xf86-video-nouveau"/>
|
||||||
|
<package name="xf86-video-nv"/>
|
||||||
|
<package name="xf86-video-qxl"/>
|
||||||
|
<package name="xf86-video-r128"/>
|
||||||
|
<package name="xf86-video-savage"/>
|
||||||
|
<package name="xf86-video-siliconmotion" arch="i686,x86_64"/>
|
||||||
|
<package name="xf86-video-sis"/>
|
||||||
|
<package name="xf86-video-sisusb"/>
|
||||||
|
<package name="xf86-video-tdfx"/>
|
||||||
|
<package name="xf86-video-v4l"/>
|
||||||
|
<package name="xf86-video-vesa"/>
|
||||||
|
<package name="xf86-video-voodoo"/>
|
||||||
|
<package name="xz"/>
|
||||||
|
<package name="yast2-trans-de"/>
|
||||||
|
<package name="yast2-trans-cs"/>
|
||||||
|
<package name="yast2-trans-da"/>
|
||||||
|
<package name="yast2-trans-es"/>
|
||||||
|
<package name="yast2-trans-ja"/>
|
||||||
|
<package name="yast2-trans-pl"/>
|
||||||
|
<package name="yast2-trans-ru"/>
|
||||||
|
<package name="yast2-trans-sv"/>
|
||||||
|
<package name="yast2-trans-zh_CN"/>
|
||||||
|
<package name="yast2-trans-zh_TW"/>
|
||||||
|
<package name="zd1211-firmware"/>
|
||||||
|
<package name="zip"/>
|
||||||
|
<package name="aaa_base" replaces="ntp"/>
|
||||||
|
<ignore name="ntp"/>
|
||||||
|
|
||||||
|
<!-- list-gnome.sh -->
|
||||||
|
<package name="aaa_base" replaces="libreoffice-calc"/>
|
||||||
|
<ignore name="libreoffice-calc"/>
|
||||||
|
<package name="aaa_base" replaces="libreoffice-draw"/>
|
||||||
|
<ignore name="libreoffice-draw"/>
|
||||||
|
<package name="aaa_base" replaces="libreoffice-impress"/>
|
||||||
|
<ignore name="libreoffice-impress"/>
|
||||||
|
<package name="aaa_base" replaces="libreoffice-icon-theme-breeze"/>
|
||||||
|
<ignore name="libreoffice-icon-theme-breeze"/>
|
||||||
|
<package name="aaa_base" replaces="libreoffice-icon-theme-sifr"/>
|
||||||
|
<ignore name="libreoffice-icon-theme-sifr"/>
|
||||||
|
<package name="aaa_base" replaces="libreoffice-icon-theme-hicontrast"/>
|
||||||
|
<ignore name="libreoffice-icon-theme-hicontrast"/>
|
||||||
|
<package name="aaa_base" replaces="colord"/>
|
||||||
|
<ignore name="colord"/>
|
||||||
|
<package name="aaa_base" replaces="apparmor-utils"/>
|
||||||
|
<ignore name="apparmor-utils"/>
|
||||||
|
<package name="aaa_base" replaces="java-11-openjdk-headless"/>
|
||||||
|
<ignore name="java-11-openjdk-headless"/>
|
||||||
|
<package name="branding-openSUSE"/>
|
||||||
|
<package name="adobe-sourcecodepro-fonts"/>
|
||||||
|
<package name="aaa_base" replaces="google-carlito-fonts"/>
|
||||||
|
<ignore name="google-carlito-fonts"/>
|
||||||
|
<package name="aaa_base" replaces="noto-sans-fonts"/>
|
||||||
|
<ignore name="noto-sans-fonts"/>
|
||||||
|
<package name="aaa_base" replaces="noto-sans-cjk-fonts"/>
|
||||||
|
<ignore name="noto-sans-cjk-fonts"/>
|
||||||
|
<package name="aaa_base" replaces="noto-sans-sc-bold-fonts"/>
|
||||||
|
<ignore name="noto-sans-sc-bold-fonts"/>
|
||||||
|
<package name="aaa_base" replaces="noto-sans-sc-regular-fonts"/>
|
||||||
|
<ignore name="noto-sans-sc-regular-fonts"/>
|
||||||
|
<package name="aaa_base" replaces="noto-sans-tc-bold-fonts"/>
|
||||||
|
<ignore name="noto-sans-tc-bold-fonts"/>
|
||||||
|
<package name="aaa_base" replaces="noto-sans-tc-regular-fonts"/>
|
||||||
|
<ignore name="noto-sans-tc-regular-fonts"/>
|
||||||
|
<package name="aaa_base" replaces="noto-sans-jp-bold-fonts"/>
|
||||||
|
<ignore name="noto-sans-jp-bold-fonts"/>
|
||||||
|
<package name="aaa_base" replaces="noto-sans-jp-regular-fonts"/>
|
||||||
|
<ignore name="noto-sans-jp-regular-fonts"/>
|
||||||
|
<package name="aaa_base" replaces="noto-sans-kr-bold-fonts"/>
|
||||||
|
<ignore name="noto-sans-kr-bold-fonts"/>
|
||||||
|
<package name="aaa_base" replaces="noto-sans-kr-regular-fonts"/>
|
||||||
|
<ignore name="noto-sans-kr-regular-fonts"/>
|
||||||
|
<package name="aaa_base" replaces="libreoffice"/>
|
||||||
|
<ignore name="libreoffice"/>
|
||||||
|
<package name="live-net-installer"/>
|
||||||
|
<package name="skelcd-openSUSE"/>
|
||||||
|
<package name="setxkbmap"/>
|
||||||
|
<package name="skelcd-control-openSUSE"/>
|
||||||
|
<package name="cracklib-dict-full"/>
|
||||||
|
<package name="thai-fonts"/>
|
||||||
|
<package name="lklug-fonts"/>
|
||||||
|
<package name="indic-fonts"/>
|
||||||
|
<package name="arabic-kacst-fonts"/>
|
||||||
|
<package name="aaa_base" replaces="simple-scan"/>
|
||||||
|
<ignore name="simple-scan"/>
|
||||||
|
<package name="aaa_base" replaces="ghostscript"/>
|
||||||
|
<ignore name="ghostscript"/>
|
||||||
|
<package name="aaa_base" replaces="myspell-en_US"/>
|
||||||
|
<ignore name="myspell-en_US"/>
|
||||||
|
<package name="aaa_base" replaces="orca"/>
|
||||||
|
<ignore name="orca"/>
|
||||||
|
<package name="aaa_base" replaces="gnome-software"/>
|
||||||
|
<ignore name="gnome-software"/>
|
||||||
|
<package name="aaa_base" replaces="gnome-control-center-color"/>
|
||||||
|
<ignore name="gnome-control-center-color"/>
|
||||||
|
<package name="aaa_base" replaces="libgweather-lang"/>
|
||||||
|
<ignore name="libgweather-lang"/>
|
||||||
|
<package name="aaa_base" replaces="gnome-user-docs"/>
|
||||||
|
<ignore name="gnome-user-docs"/>
|
||||||
|
<package name="aaa_base" replaces="gnome-user-docs-lang"/>
|
||||||
|
<ignore name="gnome-user-docs-lang"/>
|
||||||
|
<package name="aaa_base" replaces="eog-lang"/>
|
||||||
|
<ignore name="eog-lang"/>
|
||||||
|
<package name="aaa_base" replaces="evolution-lang"/>
|
||||||
|
<ignore name="evolution-lang"/>
|
||||||
|
<package name="aaa_base" replaces="evolution-data-server-lang"/>
|
||||||
|
<ignore name="evolution-data-server-lang"/>
|
||||||
|
<package name="aaa_base" replaces="zenity-lang"/>
|
||||||
|
<ignore name="zenity-lang"/>
|
||||||
|
<package name="aaa_base" replaces="amavisd-new"/>
|
||||||
|
<ignore name="amavisd-new"/>
|
||||||
|
<package name="aaa_base" replaces="inkscape"/>
|
||||||
|
<ignore name="inkscape"/>
|
||||||
|
<package name="aaa_base" replaces="deja-dup"/>
|
||||||
|
<ignore name="deja-dup"/>
|
||||||
|
<package name="aaa_base" replaces="libpython2_7-1_0"/>
|
||||||
|
<ignore name="libpython2_7-1_0"/>
|
||||||
|
<package name="aaa_base" replaces="gimp"/>
|
||||||
|
<ignore name="gimp"/>
|
||||||
|
<package name="aaa_base" replaces="noto-coloremoji-fonts"/>
|
||||||
|
<ignore name="noto-coloremoji-fonts"/>
|
||||||
|
<package name="aaa_base" replaces="gnome-weather"/>
|
||||||
|
<ignore name="gnome-weather"/>
|
||||||
|
<package name="gparted"/>
|
||||||
|
<package name="aaa_base" replaces="gparted-lang"/>
|
||||||
|
<ignore name="gparted-lang"/>
|
||||||
|
<package name="aaa_base" replaces="vinagre-lang"/>
|
||||||
|
<ignore name="vinagre-lang"/>
|
||||||
|
<package name="aaa_base" replaces="gedit-lang"/>
|
||||||
|
<ignore name="gedit-lang"/>
|
||||||
|
<package name="aaa_base" replaces="fwupd-lang"/>
|
||||||
|
<ignore name="fwupd-lang"/>
|
||||||
|
<package name="aaa_base" replaces="gnome-photos"/>
|
||||||
|
<ignore name="gnome-photos"/>
|
||||||
|
<package name="aaa_base" replaces="cyrus-sasl"/>
|
||||||
|
<ignore name="cyrus-sasl"/>
|
||||||
|
<package name="NetworkManager-applet"/>
|
||||||
|
<package name="xf86-video-vmware" arch="i686,x86_64"/>
|
||||||
|
<package name="alsa-firmware"/>
|
||||||
|
<namedCollection name="apparmor"/>
|
||||||
|
<namedCollection name="games"/>
|
||||||
|
<namedCollection name="gnome"/>
|
||||||
|
<namedCollection name="gnome_basis"/>
|
||||||
|
<namedCollection name="gnome_imaging"/>
|
||||||
|
<namedCollection name="gnome_internet"/>
|
||||||
|
<namedCollection name="gnome_multimedia"/>
|
||||||
|
<namedCollection name="gnome_office"/>
|
||||||
|
<namedCollection name="gnome_utilities"/>
|
||||||
|
<namedCollection name="gnome_yast"/>
|
||||||
|
<namedCollection name="imaging"/>
|
||||||
|
<namedCollection name="multimedia"/>
|
||||||
|
<namedCollection name="office"/>
|
||||||
|
<namedCollection name="sw_management_gnome"/>
|
||||||
|
<namedCollection name="yast2_basis"/>
|
||||||
|
<namedCollection name="yast2_install_wf"/>
|
||||||
|
<package name="gnome-mines"/>
|
||||||
|
<package name="gnome-sudoku"/>
|
||||||
|
<package name="quadrapassel"/>
|
||||||
|
<package name="aaa_base" replaces="opensuse-welcome"/>
|
||||||
|
<ignore name="opensuse-welcome"/>
|
||||||
|
</packages>
|
||||||
|
<packages type="image" profiles="SelfInstall">
|
||||||
|
<!-- Needed for initial configuration, except on OpenStack-Cloud, where cloud-init is used -->
|
||||||
|
<!-- On ONIE, the installer does the partitioning and salt is used for configuration -->
|
||||||
|
<package name="ignition"/>
|
||||||
|
<package name="ignition-dracut-grub2"/>
|
||||||
|
<package name="combustion"/>
|
||||||
|
<package name="jeos-firstboot"/>
|
||||||
|
<package name="growpart-generator"/>
|
||||||
|
<package name="dracut-kiwi-oem-dump"/>
|
||||||
|
<package name="dracut-kiwi-oem-repart"/>
|
||||||
|
|
||||||
|
<!-- list-suse-it-infra.sh -->
|
||||||
|
<package name="gnome-initial-setup"/>
|
||||||
|
<package name="gnome-branding-Leap"/>
|
||||||
|
<package name="onedrive"/>
|
||||||
|
<package name="onedrive-completion-bash"/>
|
||||||
|
<package name="rancher-desktop" arch="x86_64"/>
|
||||||
|
<package name="suse-csb-release"/>
|
||||||
|
<package name="NetworkManager-openconnect-profile-SUSE-VPN"/>
|
||||||
|
<package name="NetworkManager-openvpn-profile-SUSE-VPN"/>
|
||||||
|
</packages>
|
||||||
|
<packages type="bootstrap">
|
||||||
|
<package name="filesystem"/>
|
||||||
|
<package name="Leap-release"/>
|
||||||
|
<package name="openSUSE-build-key"/>
|
||||||
|
<package name="openSUSE-repos-Leap"/>
|
||||||
|
<!--<package name="openSUSE-release-livecd-gnome"/>-->
|
||||||
|
<package name="branding-openSUSE"/>
|
||||||
|
</packages>
|
||||||
|
<repository type="rpm-md">
|
||||||
|
<source path="obsrepositories:/"/>
|
||||||
|
</repository>
|
||||||
|
</image>
|
Loading…
Reference in New Issue
Block a user