]> git.michaelhowe.org Git - packages/o/openafs.git/commitdiff
scripts to move files into place
authorSam Hartman <hartmans@debian.org>
Sun, 5 Nov 2000 03:09:37 +0000 (03:09 +0000)
committerSam Hartman <hartmans@debian.org>
Sun, 5 Nov 2000 03:09:37 +0000 (03:09 +0000)
debian/filelist [new file with mode: 0644]
debian/movefiles [new file with mode: 0755]

diff --git a/debian/filelist b/debian/filelist
new file mode 100644 (file)
index 0000000..5690781
--- /dev/null
@@ -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 (executable)
index 0000000..11aed29
--- /dev/null
@@ -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