]> git.pld-linux.org Git - packages/util-vserver.git/blame - util-vserver-initpost.sh
- merged into pld patch (by baggins)
[packages/util-vserver.git] / util-vserver-initpost.sh
CommitLineData
c1d7156a
ER
1#! /bin/bash
2
3# Copyright (C) 2005 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
4#
5# This program is free software; you can redistribute it and/or modify
6# it under the terms of the GNU General Public License as published by
7# the Free Software Foundation; version 2 of the License.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program; if not, write to the Free Software
16# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18## Called as: initpost <cfgdir> <path of util-vserver-vars>
19
20vdir=$1/vdir
21cfgdir=$1
22. "$2"
23
24## Usage: subst <file> <regexp>
25function subst
26{
27 tmp=$(mktemp /tmp/initpost-subst.XXXXXX)
28
29 case "$1" in
30 (/*|./*) cat "$1";;
31 (*) $_CHROOT_SH cat "$1";;
32 esac | sed -e "$2" >$tmp
33 cmp -s $tmp "$1" || $_CHROOT_SH truncate "$1" <$tmp
34
35 rm -f $tmp
36}
37
38pushd "$cfgdir" &>/dev/null
39 # make convinient poldek.conf symlink
40 ln -s apps/pkgmgmt/base/poldek/etc/poldek.conf poldek.conf
41popd >/dev/null
42
43pushd "$vdir" &>/dev/null
deca360c
ER
44 if [ -f etc/sysconfig/rpm ]; then
45 subst etc/sysconfig/rpm 's!^#RPM_SKIP_AUTO_RESTART=.*!RPM_SKIP_AUTO_RESTART=yes!'
46 fi
47
c1d7156a
ER
48 # for future. right now SysVinit is not created at build stage
49 if [ -f etc/inittab ]; then
50 # disable mingetty respawn
51 subst etc/inittab 's!^\([^#].*:respawn:.* tty\)!#\1!'
52 fi
53popd >/dev/null
This page took 0.029517 seconds and 4 git commands to generate.