Dan Čermák
cdd4bd95af
OBS-URL: https://build.opensuse.org/package/show/devel:BCI:Tumbleweed/busybox-image?expand=0&rev=242
35 lines
844 B
Bash
35 lines
844 B
Bash
#!/bin/sh
|
|
# SPDX-License-Identifier: MIT
|
|
# SPDX-FileCopyrightText: (c) 2022-2025 SUSE LLC
|
|
|
|
set -euo pipefail
|
|
|
|
test -f /.kconfig && . /.kconfig
|
|
test -f /.profile && . /.profile
|
|
|
|
echo "Configure image: [$kiwi_iname]..."
|
|
|
|
#============================================
|
|
# Import repositories' keys if rpm is present
|
|
#--------------------------------------------
|
|
if command -v rpm > /dev/null; then
|
|
suseImportBuildKey
|
|
fi
|
|
|
|
|
|
sed -i 's|/bin/bash|/bin/sh|' /etc/passwd
|
|
# Will be recreated by the next rpm(1) run as root user
|
|
rm -v /usr/lib/sysimage/rpm/Index.db
|
|
|
|
|
|
#=======================================
|
|
# Clean up after zypper if it is present
|
|
#---------------------------------------
|
|
if command -v zypper > /dev/null; then
|
|
zypper -n clean
|
|
fi
|
|
|
|
rm -rf {/target,}/var/log/{alternatives.log,lastlog,tallylog,zypper.log,zypp/history,YaST2}
|
|
|
|
exit 0
|