chiark / gitweb /
Remove finger program from trunk.
[userv-utils.git] / finger / install-confs
diff --git a/finger/install-confs b/finger/install-confs
deleted file mode 100755 (executable)
index 68044a9..0000000
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-set -e
-destdir="$1"; shift
-for f in "$@"; do install -m 644 -o root "$f" "$destdir/$f:new"; done
-cd "$destdir"
-for f in "$@"; do
-       if ! test -f "$f"; then
-               echo installing new "$destdir/$f"
-               mv -f "$f:new" "$f"
-       fi
-done