@@ -0,0 +1,61 @@
+#!/bin/bash
+#================
+# FILE : config.sh
+#----------------
+# PROJECT : OpenSuSE KIWI Image System
+# COPYRIGHT : (c) 2006 SUSE LINUX Products GmbH. All rights reserved
+# :
+# AUTHOR : Marcus Schaefer <ms@suse.de>
+# :
+# BELONGS TO : Operating System images
+# :
+# DESCRIPTION : configuration script for SUSE based
+# : operating systems
+# :
+# :
+# STATUS : BETA
+#----------------
+#======================================
+# Functions...
+#--------------------------------------
+test -f /.kconfig && . /.kconfig
+test -f /.profile && . /.profile
+
+#======================================
+# Greeting...
+#--------------------------------------
+echo "Configure image: [$kiwi_iname]..."
+
+#======================================
+# Activate services
+#--------------------------------------
+suseActivateServices
+suseRemoveService boot.multipath
+#suseRemoveService boot.device-mapper
+suseRemoveService mdadmd
+suseRemoveService multipathd
+suseRemoveService postfix
+suseRemoveService network-remotefs
+suseRemoveService rsyncd
+suseRemoveService splash
+suseRemoveService splash_early
+suseRemoveService cron
+suseRemoveService atftpd
+suseRemoveService rpasswdd
+
+#======================================
+# SuSEconfig
+#--------------------------------------
+suseConfig
+
+#======================================
+# Setup ssh permissions
+#--------------------------------------
+cd /etc/ssh && chmod og-r *_key
+
+#======================================
+# Umount kernel filesystems
+#--------------------------------------
+baseCleanMount
+
+exit 0
|