blob: 896447f756c7b0c6876f79b40372e94e3eff8810 (
plain)
- #!/bin/sh
- set -e
- PRG=$(basename "$0")
- function showhelp() {
- cat <<EOF
- Usage: $PRG POOL [ DISTRIBUTION [ OTHERMIRROR] ]
- Examples:
- $PRG sarge
- $PRG sarge+hacks sarge 'deb http://example.com/ sarge hacks'
- EOF
- }
- if [ $# -eq 0 ]; then
- showhelp
- exit 1
- fi
- pool=$1
- distro=${2:-$pool}
- basepath="/var/cache/pbuilder/cow-$pool"
- aptcache="/var/cache/pbuilder/aptcache-$pool/"
- buildresult="$HOME/src/pbuild-$pool/"
- sudo cowbuilder --create \
- --buildresult "$buildresult" \
- --distribution "$distro" \
- --basepath "$basepath" \
- --aptcache "$aptcache" \
- ${3:+--othermirror "$3"}
|