[324] in Info-AFS_Redistribution
pmax_ul4: Segmentation Fault during 'mount' command
daemon@ATHENA.MIT.EDU (epeisach@athena.mit.edu)
Fri Sep 20 14:45:44 1991
From: epeisach@athena.mit.edu
Date: Fri, 20 Sep 91 13:29:41 -0400
To: info-afs@transarc.com, afs-help@transarc.com
Cc: pv-tech@iastat.edu
Martin Calsyn gave some changes to mount. We simply changed fs_types.h
and recompiled mount. The following is our version of /etc/afs-mount:
#!/bin/sh
case $1 in
-p)
/bin/fs listvol /afs |/bin/awk '/named/{print $NF " on /afs, type afs"}'
;;
*)
echo "afs_mount: unknown argument $1"
exit 1
;;
esac
exit 0
Output is:
root.afs.readonly on /afs, type afs
which works well with simply typing mount.
Ezra