initVariablesApt(): fixed empty function body
[util-vserver.git] / util-vserver / scripts / vserver-build.functions.apt
1 # $Id$  --*- sh -*--
2
3 # Copyright (C) 2003 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 function installBasePackages
19 {
20     local name="$1"
21     local dir="$2"
22
23     test "$dir" != / || return 0
24     for filelist in "$dir"/*; do
25         test -f "$filelist" || continue
26         local idx=0
27         local can_fail=false
28         local flags=
29
30         set -- $(<$filelist)
31         while test "$#" -gt 0; do
32             case "$1" in
33                 --reinstall) flags='--reinstall';;
34                 --can-fail)  can_fail=true;;
35                 *)           break;;
36             esac
37             shift
38         done
39         "$_VAPT_GET" "$name" -- install -y $flags $* || $can_fail
40     done
41 }
42
43 function initVariablesApt
44 {
45     :
46 }
47
48 function initFilesystemApt
49 {
50     mkdir -p "$PKGCFGDIR"/apt/{etc,archives/partial,cache,state/lists/partial}
51     
52     populateDirectory "$PKGCFGDIR/apt/etc" \
53         "$DISTRIBDIR/defaults/apt" \
54         "$DISTRIBDIR/$DISTRIBUTION/apt" \
55         "$CONFDIR/.distributions/$DISTRIBUTION/apt"
56
57     local f="$PKGCFGDIR"/apt/etc/apt.conf
58     if test -e "$f"; then
59         sed -e "s!@APTETCDIR@!$PKGCFGDIR/apt/etc!g" "$f" >"$f.tmp"
60         cmp -s "$f" "$f.tmp" || cat "$f.tmp" >"$f"
61         rm -f "$f.tmp"
62     fi
63 }