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

OBS-URL: https://build.opensuse.org/request/show/931917
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kiwi-templates-JeOS?expand=0&rev=27
This commit is contained in:
Dominique Leuenberger 2021-11-20 01:38:23 +00:00 committed by Git OBS Bridge
commit faba8a05f1
3 changed files with 14 additions and 1 deletions

View File

@ -248,6 +248,8 @@
</repository>
<packages type="image">
<package name="patterns-base-base"/>
<package name="patterns-base-apparmor"/> <!-- Installs tools and profiles -->
<package name="audit"/> <!-- On SLE it's only recommended by the apparmor pattern -->
<package name="aaa_base-extras"/> <!-- wouldn't be SUSE without that ;-) -->
<package name="acl"/>
<package name="chrony"/>

View File

@ -98,7 +98,8 @@ if [ "${kiwi_btrfs_root_is_snapshot-false}" = 'true' ]; then
# we can't call snapper here as the .snapshots subvolume
# already exists and snapper create-config doesn't like
# that.
cp /etc/snapper/config-templates/default /etc/snapper/configs/root
cp /etc/snapper/config-templates/default /etc/snapper/configs/root \
|| cp /usr/share/snapper/config-templates/default /etc/snapper/configs/root
# Change configuration to match SLES12-SP1 values
sed -i -e '/^TIMELINE_CREATE=/s/yes/no/' /etc/snapper/configs/root
sed -i -e '/^NUMBER_LIMIT=/s/50/10/' /etc/snapper/configs/root

View File

@ -1,3 +1,13 @@
-------------------------------------------------------------------
Tue Nov 16 13:07:23 UTC 2021 - Fabian Vogt <fvogt@suse.com>
- Install AppArmor pattern and audit
-------------------------------------------------------------------
Fri Nov 12 08:29:40 UTC 2021 - Fabian Vogt <fvogt@suse.com>
- Support new location of the snapper config templates
-------------------------------------------------------------------
Mon Oct 18 11:20:51 UTC 2021 - Fabian Vogt <fvogt@suse.com>