summaryrefslogtreecommitdiff
path: root/net/coda5_client/INSTALL
diff options
context:
space:
mode:
authorjlam <jlam@pkgsrc.org>2002-06-20 19:28:24 +0000
committerjlam <jlam@pkgsrc.org>2002-06-20 19:28:24 +0000
commit1eb0b3fc6689ec104d812b97768171600395e66f (patch)
tree7cee17aed50f01a01924362a447694a0e201ad68 /net/coda5_client/INSTALL
parent3d1cbda760e052cc534fe7dba295c9831141cc0b (diff)
downloadpkgsrc-1eb0b3fc6689ec104d812b97768171600395e66f.tar.gz
Update net/coda5_client to version 5.3.19. Changes from version 5.3.13
include: * Installing the relevant manpages with the client programs. * Miscellaneous bug fixes. * Venus now gracefully handles the situation where getvolinfo returns different replicas compared to the cached replication information. Now we only need add server support for VSG changes and a trigger that forces venus to make a getvolinfo call and we can start moving volumes around in the system. * Avoid killing clients when receiving truncated directory data. * Block when accessing an uncached object during resolution instead of failing. This is especially useful during weak-reintegration. * Added -local flag to cfs lv to avoid client-server rpc2 traffic. * Fetch data as well as status in write-disconnected mode, the dirty status-only object would prevent subsequent data-fetches until successful reintegration completed. * Added venus.conf option 'validateattrs' to limit piggybacked fids during validate attrs to help reducing IP layer fragmentation. * Another new venus.conf option 'serverprobe' to increase server probe intervals (keeps firewalls from dropping masqueraded connections). * venus.conf.ex file now defaults to turning on both masquerading and using private mmap's for RVM. * Disallow unlinking special names with 'cfs rmm' * Optimized local-global fid replacement. * Moved /usr/bin/replay to /usr/bin/coda_replay to avoid name conflicts. * Reintroduced VSGs in venus. * Re-randomizing during hoardwalks to add fair reclaiming behaviour in the low end of the priority queue.
Diffstat (limited to 'net/coda5_client/INSTALL')
-rw-r--r--net/coda5_client/INSTALL25
1 files changed, 4 insertions, 21 deletions
diff --git a/net/coda5_client/INSTALL b/net/coda5_client/INSTALL
index 8ae1b79f976..972f7743858 100644
--- a/net/coda5_client/INSTALL
+++ b/net/coda5_client/INSTALL
@@ -1,30 +1,13 @@
#! /bin/sh
#
-# $NetBSD: INSTALL,v 1.1 2001/10/31 22:55:03 zuntum Exp $
-
-PKGNAME=$1
-STAGE=$2
-
-LN="@LN@"
-RM="@RM@"
+# $NetBSD: INSTALL,v 1.2 2002/06/20 19:28:25 jlam Exp $
case ${STAGE} in
-PRE-INSTALL)
- ;;
-
POST-INSTALL)
- # coda-server may have already created these links
- for script in coda-setup-ports codaconfedit; do
- if [ ! -f ${PKG_PREFIX}/sbin/${script} ]
- then
- ${LN} -sf venus-${script} ${PKG_PREFIX}/sbin/${script}
+ for file in au coda-setup-ports codaconfedit; do
+ if [ ! -f ${PKG_PREFIX}/sbin/${file} ]; then
+ ${LN} -sf venus-${file} ${PKG_PREFIX}/sbin/${file}
fi
done
;;
-
-*)
- echo "Unexpected argument: ${STAGE}"
- exit 1
- ;;
esac
-exit 0