#!/bin/sh # SPDX-License-Identifier: MIT # SPDX-FileCopyrightText: (c) 2022 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 exit 0