mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-27 04:16:45 +01:00
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
|