diff options
Diffstat (limited to 'home')
-rw-r--r-- | home/.pbuilderrc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/home/.pbuilderrc b/home/.pbuilderrc index f52a77f..7043228 100644 --- a/home/.pbuilderrc +++ b/home/.pbuilderrc @@ -37,6 +37,7 @@ if [ "x$ARCH" = "xarmel" ]; then MEMORY_MEGS=256 INITRD="" else + SMP="2" MEMORY_MEGS=512 INITRD=/srv/pbuilder/qemu-kernels/$ARCH/initrd.img fi @@ -44,6 +45,10 @@ fi if [ "x${DIST}" = "xubuntu" ]; then MIRRORSITE="http://localhost:3142/ubuntu" elif [ "x${DIST}" = "xdebian" ]; then - MIRRORSITE="http://localhost:3142/debian" + if [ "x${CODENAME}" = "xlenny" ]; then + MIRRORSITE="http://localhost:3142/archive.debian.org/debian" + else + MIRRORSITE="http://localhost:3142/debian" + fi fi |