From 30ae865c62f9041403ee5cae9fc7a6e5f2622f8a Mon Sep 17 00:00:00 2001 From: art <> Date: Wed, 28 Oct 1998 17:47:00 +0000 Subject: [PATCH] use xfs, not afs when mounting afs. Making mount_afs work correctly is too hard. --- src/etc/rc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/etc/rc b/src/etc/rc index 0cb77cc0..250190f1 100644 --- a/src/etc/rc +++ b/src/etc/rc @@ -1,4 +1,4 @@ -# $OpenBSD: rc,v 1.90 1998/10/12 03:02:57 art Exp $ +# $OpenBSD: rc,v 1.91 1998/10/28 17:47:00 art Exp $ # System startup script run by init on autoboot # or after single-user. @@ -222,7 +222,7 @@ fi if [ "X${afs}" = X"YES" -a -c ${afs_device} -a -d ${afs_mount_point} ]; then echo -n 'mounting afs:' - mount -t afs ${afs_device} ${afs_mount_point} + mount -t xfs ${afs_device} ${afs_mount_point} /usr/libexec/afsd ${afsd_flags} -d ${afs_device} echo ' done.' fi