Skip to content

Commit e2f03cd

Browse files
authored
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 <fstype>] device mountpoint
1 parent 96f614e commit e2f03cd

File tree

1 file changed

+2
-2
lines changed
  • source/installguide/management-server

1 file changed

+2
-2
lines changed

source/installguide/management-server/_nfs.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -253,8 +253,8 @@ operating system version.
253253
.. parsed-literal::
254254
255255
mkdir /primary
256-
mount -t nfs <management-server-name>:/export/primary
256+
mount -t nfs <management-server-name>:/export/primary /primary
257257
umount /primary
258258
mkdir /secondary
259-
mount -t nfs <management-server-name>:/export/secondary
259+
mount -t nfs <management-server-name>:/export/secondary /secondary
260260
umount /secondary

0 commit comments

Comments
 (0)