From 8c631b019b849b4bf38021f6c1862cf1cd102e47 Mon Sep 17 00:00:00 2001 From: Wang Shilong Date: Mon, 26 Aug 2019 19:43:44 +0800 Subject: [PATCH] scoutfs: fix wrong option example in README scoutfs f.000000.r.200d94 error: Unknown or malformed option, "server_address=192.168.31.220" Should be server_addr, fix it. Cc: Zach Brown Fixes: 10c32("scoutfs: update README.md for server_addr") Signed-off-by: Wang Shilong --- kmod/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kmod/README.md b/kmod/README.md index fb5a7cb6..5152a124 100644 --- a/kmod/README.md +++ b/kmod/README.md @@ -115,7 +115,7 @@ device name is the same on all the nodes. ```shell mkdir /mnt/scoutfs - mount -t scoutfs -o server_address=$NODE_ADDR /dev/shared_block_device /mnt/scoutfs + mount -t scoutfs -o server_addr=$NODE_ADDR /dev/shared_block_device /mnt/scoutfs ``` 4. For Kicks, Observe the Metadata Change Index