Search
j0ke.net Open Build Service
>
Projects
>
J0KE.NET
:
infrastructure
>
obs-worker-image
> config.sh
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File config.sh of Package obs-worker-image (Revision 2)
Currently displaying revision
2
,
show latest
#!/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