mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
7fd969911b
Signed-off-by: Jessica Frazelle <acidburn@docker.com>
50 lines
1.2 KiB
Bash
50 lines
1.2 KiB
Bash
#!/bin/bash
|
|
#================
|
|
# FILE : config.sh
|
|
#----------------
|
|
# PROJECT : OpenSuSE KIWI Image System
|
|
# COPYRIGHT : (c) 2013 SUSE LLC
|
|
# :
|
|
# AUTHOR : Robert Schweikert <rjschwei@suse.com>
|
|
# :
|
|
# 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]..."
|
|
|
|
#======================================
|
|
# Setup baseproduct link
|
|
#--------------------------------------
|
|
suseSetupProduct
|
|
|
|
#======================================
|
|
# SuSEconfig
|
|
#--------------------------------------
|
|
suseConfig
|
|
|
|
#======================================
|
|
# Activate services
|
|
#--------------------------------------
|
|
suseActivateDefaultServices
|
|
|
|
#======================================
|
|
# Umount kernel filesystems
|
|
#--------------------------------------
|
|
baseCleanMount
|
|
|
|
exit 0
|