]> git.pld-linux.org Git - packages/util-vserver.git/blob - util-vserver-initpost.sh
- rel 3; R texlive-fonts-rsfs
[packages/util-vserver.git] / util-vserver-initpost.sh
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
20 vdir=$1/vdir
21 cfgdir=$1
22 . "$2"
23
24 ## Usage: subst <file> <regexp>
25 function 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
38 pushd "$cfgdir" &>/dev/null
39         # make convinient poldek.conf symlink
40         ln -s apps/pkgmgmt/base/poldek/etc/poldek.conf poldek.conf
41 popd >/dev/null
42
43 pushd "$vdir" &>/dev/null
44
45         # for future. right now SysVinit is not created at build stage
46         if [ -f etc/inittab ]; then
47                 # disable mingetty respawn
48                 subst etc/inittab 's!^\([^#].*:respawn:.* tty\)!#\1!'
49         fi
50 popd >/dev/null
This page took 0.046369 seconds and 3 git commands to generate.