source: trunk/debathena/third/openafs/upload-openafs @ 22702

Revision 22702, 371 bytes checked in by ghudson, 17 years ago (diff)
Snapshot the scripts used to build OpenAFS kernel modules, from /mit/debathena/packages/third/openafs.
  • Property svn:executable set to *
Line 
1#!/bin/bash
2set -e
3for i in */; do
4    (
5        cd $i
6        diff -U0 \
7            <(ls *.deb 2>/dev/null | sort) \
8            <(cd /mit/debathena/apt/pool/openafs/o/openafs && ls *.deb | sort) | \
9            sed -n 's/^-\(.*\)\.deb$/\1/ p' | \
10            xargs -t -n1 -I@ reprepro --ignore=wrongdistribution -Vb /mit/debathena/apt -C openafs include "$(echo "$i" | sed 's/-[^-]*$//')" @.changes
11    )
12done
Note: See TracBrowser for help on using the repository browser.