Search
j0ke.net Open Build Service
>
Projects
>
home:netmax
:
playground
:
kiwi
>
image-installer-tumbleweed
> config.sh
Sign Up
|
Log In
Username
Password
Cancel
Overview
Repositories
Revisions
Requests
Users
Advanced
Attributes
Meta
File config.sh of Package image-installer-tumbleweed
#!/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: [$name]..." #====================================== # SuSEconfig #-------------------------------------- echo "** Running suseConfig..." suseConfig echo "** Running ldconfig..." /sbin/ldconfig #====================================== # RPM GPG Keys Configuration #-------------------------------------- echo '** Importing GPG Keys...' rpm --import /studio/studio_rpm_key_0 rm /studio/studio_rpm_key_0 rpm --import /studio/studio_rpm_key_1 rm /studio/studio_rpm_key_1 rpm --import /studio/studio_rpm_key_2 rm /studio/studio_rpm_key_2 sed --in-place -e 's/# solver.onlyRequires.*/solver.onlyRequires = true/' /etc/zypp/zypp.conf # Enable sshd chkconfig sshd on # enable rpcbind chkconfig rpcbind on chkconfig splash off chkconfig splash_early off systemctl enable image-installer.service cat > /etc/systemd/system/after-local.service << EOF # This file is part of systemd. # # systemd is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. [Unit] Description=/etc/init.d/after.local Compatibility ConditionFileIsExecutable=/etc/init.d/after.local [Service] Type=oneshot ExecStart=/etc/init.d/after.local TimeoutSec=0 StandardOutput=tty RemainAfterExit=yes SysVStartPriority=99 [Install] WantedBy=multi-user.target EOF systemctl enable after-local.service echo "chvt 12" >> /etc/init.d/after.local chown root:root /build-custom chmod 755 /build-custom # run custom build_script after build /build-custom # cleanup baseStripinfos baseStripLocales en_US baseStripMans test -d /studio || mkdir /studio cp /image/.profile /studio/profile cp /image/config.xml /studio/config.xml rm -rf /studio/overlay-tmp true