diff options
Diffstat (limited to 'localpbuilder-create')
-rwxr-xr-x | localpbuilder-create | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/localpbuilder-create b/localpbuilder-create new file mode 100755 index 0000000..28681c8 --- /dev/null +++ b/localpbuilder-create @@ -0,0 +1,21 @@ +#!/bin/sh + +if [ $# -eq 0 ]; then + echo "Usage: $(basename $0) POOL [ DISTRIBUTION [ EXTRA_ARCHIVES ] ]" + echo "" + echo "Example: $(basename $0) sarge_with_hacks sarge" + exit 1 +fi + +buildhost=`hostname -s` +pool=$1 +distro=${2:-$pool} +othermirror=${3:+--othermirror $3} + +sudo pbuilder create \ + --buildresult $HOME/pub/debian-$buildhost/pbuild-$pool/ \ + --distribution "$distro" \ + --basetgz /var/cache/pbuilder/base-$pool.tgz \ + --buildplace /var/cache/pbuilder/build-$pool/ \ + --aptcache /var/cache/pbuilder/aptcache-$pool/ \ + $othermirror |