@@ -0,0 +1,3 @@
+DISTRIBUTION=sid
+BASEPATH=/var/cache/pbuilder/sid.cow
+MIRRORSITE=http://ftp.fr.debian.org/debian
+DISTRIBUTION=stable
+BASEPATH=/var/cache/pbuilder/stable.cow
@@ -1,3 +1,19 @@
# Debian stuff
+function cow-dist () {
+ [ $# -lt 2 ] \
+ && echo "Error args." \
+ && return
+
+ dist=$1
+ shift
+ command=$1
+ echo cowbuilder $command --configfile ~/.cowbuilder/$dist $@
+ return $?
+}
+alias cow-stable="cow-dist stable"
+alias cow-sid="cow-dist sid"