Mention the b0rken suite on-the-fly heuristic
[grml-live.git] / etc / grml / fai / config / scripts / GRML / 33-aptsetup
1 #!/bin/sh
2 # Filename:      /etc/grml/fai/config/scripts/GRML/33-aptsetup
3 # Purpose:       configure Debian package management of live-system
4 # Authors:       grml-team (grml.org), (c) Michael Prokop <mika@grml.org>
5 # Bug-Reports:   see http://grml.org/bugs/
6 # License:       This file is licensed under the GPL v2 or any later version.
7 # Latest change: Sun Sep 16 23:10:06 CEST 2007 [mika]
8 ################################################################################
9
10 set -u
11 set -e
12
13 rm -f $target/etc/apt/sources.list
14
15 $ROOTCMD ln -s /etc/apt/sources.list.grml /etc/apt/sources.list
16
17 if [ -r /etc/grml/fai/files/etc/apt/preferences ] ; then
18    cp /etc/grml/fai/files/etc/apt/preferences $target/etc/apt/preferences
19 fi
20
21 ## END OF FILE #################################################################
22 # vim:ft=sh expandtab ai tw=80 tabstop=4 shiftwidth=3