Blame kiwi/simple-build/config.sh

95c4d5
#!/bin/bash
95c4d5
#======================================
95c4d5
# Functions...
95c4d5
#--------------------------------------
95c4d5
test -f /.kconfig && . /.kconfig
95c4d5
test -f /.profile && . /.profile
95c4d5
95c4d5
#======================================
95c4d5
# Greeting...
95c4d5
#--------------------------------------
95c4d5
echo "Configure image: [$kiwi_iname]..."
95c4d5
95c4d5
#======================================
95c4d5
# Setup default target, multi-user
95c4d5
#--------------------------------------
95c4d5
systemctl set-default multi-user.target
95c4d5
95c4d5
#======================================
95c4d5
# Set up the user skeleton for root user
95c4d5
#--------------------------------------
95c4d5
cp -a /etc/skel/* /root/
95c4d5
95c4d5
#======================================
95c4d5
# Force localhost for hostname
95c4d5
#--------------------------------------
95c4d5
echo "localhost" > /etc/hostname
95c4d5
95c4d5
#======================================
95c4d5
# Purge unwanted locales
95c4d5
#--------------------------------------
95c4d5
rm -rf /usr/share/locale/*/*/*.mo
95c4d5
rm -rf /usr/share/X11/locale/*/*
95c4d5
find /usr/share/i18n/charmaps -type f -not -name 'UTF-8.*' -delete
95c4d5
find /usr/share/i18n/locales -type f -not -name 'en*' -delete