]> spindle.queued.net Git - xodist/commitdiff
initchroot: change up the mirror handling
authorAndres Salomon <dilinger@debian.org>
Tue, 28 Oct 2008 04:56:24 +0000 (00:56 -0400)
committerAndres Salomon <dilinger@debian.org>
Tue, 28 Oct 2008 04:56:24 +0000 (00:56 -0400)
Rather than specifying fragments of sources.list on the command line,
just specify the whole thing.  --apt-sources allows you to specify the
/etc/apt/sources.list that will be shipped, and --local-apt-mirror
allows you to specify a local mirror to use (ie, if approx is being
used) when building the chroot.

--distribution, --mirror, and --othermirror have been dropped.

Signed-off-by: Andres Salomon <dilinger@debian.org>
README.approx
initchroot.sh

index f93bb4a42891313d339bf76d70309caf119bbebf..c5616c0fd46638c36b9ea3f1c72d8aa42d4ee02b 100644 (file)
@@ -21,5 +21,7 @@ add the --mirror option, like this:
 
         sudo ./initchroot.sh \
             --package-list kde.packages \
-            --mirror http://localhost:9999/debian kde.root
+            --local-apt-mirror "deb http://localhost:9999/debian lenny main contrib non-free
+deb http://localhost:9999/security lenny/updates main contrib non-free" \
+            kde.root
 
index 081801596eba66d53c2632c120989fb294688c1a..d6571705bceb783159b332b824dd8c3a5c6fe4c2 100755 (executable)
 # along with this program; if not, write to the Free Software
 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
-DIST=lenny
 DEFUSER=olpc
 PLIST=gnome.packages
-MIRROR=http://http.us.debian.org/debian/
-OTHERMIRROR=
+APT_SOURCES="deb http://http.us.debian.org/debian/ lenny main contrib non-free
+deb http://security.debian.org/ lenny/updates main contrib non-free"
+LOCAL_APT_MIRROR=
 
 . functions.sh
 
@@ -30,11 +30,10 @@ usage()
        echo "Usage: $0 [<options>] <root directory>" 1>&2
        echo "" 1>&2
        echo "Options:" 1>&2
-       echo "  --distribution <name>     Which distribution to use" 1>&2
        echo "  --user <user>             Username for default user" 1>&2
        echo "  --package-list <list>     File containing package list" 1>&2
-       echo "  --mirror <url>            Main Mirror URL prefix" 1>&2
-       echo "  --othermirror <line>      An additional sources.list line" 1>&2
+       echo "  --apt-sources <srcs>      Contents of /etc/apt/sources.list" 1>&2
+       echo "  --local-apt-mirror <srcs> sources.list for local mirror" 1>&2
        echo "" 1>&2
        exit 1
 }
@@ -42,13 +41,6 @@ usage()
 while test $# != 0
 do
        case $1 in
-       --distribution)
-               DIST=$2
-               shift
-               if [ -z "${OTHERMIRROR}" ]; then
-                   OTHERMIRROR="deb http://security.debian.org/ ${DIST}/updates main contrib non-free"
-               fi
-               ;;
        --user)
                DEFUSER=$2
                shift
@@ -61,12 +53,12 @@ do
                }
                shift
                ;;
-       --mirror)
-               MIRROR=$2
+       --apt-sources)
+               APT_SOURCES="$2"
                shift
                ;;
-       --othermirror)
-               OTHERMIRROR=$2
+       --local-apt-mirror)
+               LOCAL_APT_MIRROR="$2"
                shift
                ;;
        *)
@@ -95,10 +87,14 @@ fi
 
 check_for_cmds debootstrap || exit 1
 
-if [ -z "${OTHERMIRROR}" ]; then
-    OTHERMIRROR="deb http://security.debian.org/ ${DIST}/updates main contrib non-free"
+if [ -z "${LOCAL_APT_MIRROR}" ]; then
+    LOCAL_APT_MIRROR="${APT_SOURCES}"
 fi
 
+# parse apt mirror
+MIRROR=$(printf "${LOCAL_APT_MIRROR}\n" | awk '/deb /{print $2}' | head -n1)
+DIST=$(printf "${LOCAL_APT_MIRROR}\n" | awk '/deb /{print $3}' | head -n1)
+
 # create chroot
 debootstrap --arch i386 ${DIST} ${ROOT_DIR} ${MIRROR}
 mkdir ${ROOT_DIR}/ofw
@@ -127,10 +123,7 @@ Dir {
        };
 };
 EOF
-cat >${ROOT_DIR}/etc/apt/sources.list<<EOF
-deb ${MIRROR} ${DIST} main contrib non-free
-${OTHERMIRROR}
-EOF
+printf "${LOCAL_APT_MIRROR}\n" >${ROOT_DIR}/etc/apt/sources.list
 (chroot ${ROOT_DIR} aptitude update)
 
 # set up base system and base packages
@@ -251,6 +244,10 @@ sugar
 EOF
 fi
 
+# override sources.list with shipping version
+printf "${APT_SOURCES}\n" >${ROOT_DIR}/etc/apt/sources.list
+(chroot ${ROOT_DIR} aptitude update)
+
 # done, clean up
 mv ${ROOT_DIR}/sbin/start-stop-daemon.REAL ${ROOT_DIR}/sbin/start-stop-daemon
 (chroot ${ROOT_DIR} aptitude clean)