diff options
Diffstat (limited to 'localcowbuilder-create')
-rwxr-xr-x | localcowbuilder-create | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/localcowbuilder-create b/localcowbuilder-create new file mode 100755 index 0000000..a5e767a --- /dev/null +++ b/localcowbuilder-create @@ -0,0 +1,20 @@ +#!/bin/sh -x + +if [ $# -eq 0 ]; then + echo "Usage: $(basename $0) POOL [ DISTRIBUTION [ OTHERMIRROR] ]" + echo "" + echo "Examples:" + echo " $(basename $0) sarge" + echo " $(basename $0) sarge+hacks sarge 'deb http://example.com/ sarge hacks'" + exit 1 +fi + +pool=$1 +distro=${2:-$pool} + +sudo cowbuilder --create \ + --buildresult $HOME/src/pbuild-$pool/ \ + --distribution "$distro" \ + --basepath /var/cache/pbuilder/cow-$pool \ + --aptcache /var/cache/pbuilder/aptcache-$pool/ \ + ${3:+--othermirror "$3"} |