From e2f03cd93f5b8146f380696ca6936bb80280ba76 Mon Sep 17 00:00:00 2001 From: Fuzzy Date: Mon, 9 Dec 2024 11:52:32 +0100 Subject: [PATCH] Fix command of nfs test mount missing mountpoint argument The command to mount the nfs shares to the filesystem is missing the directory where the nfs share should be mounted to. Ref: Manpage MOUNT(8) mount [-t ] device mountpoint --- source/installguide/management-server/_nfs.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/installguide/management-server/_nfs.rst b/source/installguide/management-server/_nfs.rst index 4ec71caa14..d6414673f3 100644 --- a/source/installguide/management-server/_nfs.rst +++ b/source/installguide/management-server/_nfs.rst @@ -253,8 +253,8 @@ operating system version. .. parsed-literal:: mkdir /primary - mount -t nfs :/export/primary + mount -t nfs :/export/primary /primary umount /primary mkdir /secondary - mount -t nfs :/export/secondary + mount -t nfs :/export/secondary /secondary umount /secondary