While I’m trying to boot a diskless client, I am running in the issue,
which I described here in detail:
https://marc.info/?l=openbsd-misc&m=164228426116738&w=2
In short: the NFS /usr partition is unavailable during boot. An approach
to tackle this issue being unavailable, suggested to me by user Atticus
was:
# Unmount all filesystems except root
# umount -a >/dev/null 2>&1
# Mount all filesystems except those of type NFS and VND
# mount -a -t nonfs,vnd
# Mount all filesystems except those of type VND
# mount -a -t vnd
as it is stated in the /etc/rc file. Sadly, this approach had no effect.
The NFS share remains unavailable during boot to the diskless client.
Can anyone confirm this behavior as a bug, or do I have to search for
misconfiguration in my setup elsewhere?
Dennis