From: Sam Hartman Date: Sun, 5 Nov 2000 03:09:37 +0000 (+0000) Subject: scripts to move files into place X-Git-Tag: debian/1.0.snap20001104-1~23 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=27485ba67420de6086a2b77c2b42e5b11397f64c;p=packages%2Fo%2Fopenafs.git scripts to move files into place --- diff --git a/debian/filelist b/debian/filelist new file mode 100644 index 000000000..569078199 --- /dev/null +++ b/debian/filelist @@ -0,0 +1,4 @@ +openafs-client/usr/bin bin/fs bin/pts bin/bos etc/vos bin/tokens +openafs-client/lib/modules/openafs root.client/usr/vice/etc/modload +openafs-client/usr/sbin root.client/usr/vice/etc/afsd +openafs-client/usr/bin bin/klog bin/kpwvalid bin/unlog diff --git a/debian/movefiles b/debian/movefiles new file mode 100755 index 000000000..11aed2912 --- /dev/null +++ b/debian/movefiles @@ -0,0 +1,14 @@ +#!/bin/sh -e + + +# This script reads in a set of lines in the form +# destination sources +# andmoves sources to destination +# destination is relative to the debian directory + +while read dest srcs ; do + mkdir -p debian/$dest ||true + for foo in $srcs; do + cp -rp dest/$foo debian/$dest + done +done