Search
j0ke.net Open Build Service
>
Projects
>
home:netmax
:
playground
:
kiwi
>
JeOS-suse-12.3
> config.sh
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File config.sh of Package JeOS-suse-12.3
#!/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]..." #====================================== # Setup baseproduct link #-------------------------------------- suseSetupProduct #====================================== # Activate services #-------------------------------------- suseInsertService sshd #====================================== # Setup default target, multi-user #-------------------------------------- baseSetRunlevel 3 #========================================== # remove package docs #------------------------------------------ rm -rf /usr/share/doc/packages/* rm -rf /usr/share/doc/manual/* rm -rf /opt/kde* #====================================== # only basic version of vim is # installed; no syntax highlighting #-------------------------------------- sed -i -e's/^syntax on/" syntax on/' /etc/vimrc #====================================== # SuSEconfig #-------------------------------------- suseConfig #====================================== # Add 12.3 repo #-------------------------------------- baseRepo="http://download.opensuse.org/distribution/12.3/repo/oss" baseName="suse-12.3" zypper ar $baseRepo $baseName #====================================== # Remove yast packages #-------------------------------------- rpm -qa | grep yast | xargs rpm -e --nodeps #====================================== # Umount kernel filesystems #-------------------------------------- baseCleanMount exit 0