From 3fb5eb2af0adcb0a3c8c366aaa0e0732de13f8df Mon Sep 17 00:00:00 2001 From: Lei Feng Date: Mon, 20 Nov 2023 08:52:47 +0800 Subject: [PATCH] LUDOC-521 pcc: fix mistake in example The value of uid in pcc param should be embranced in {}. Signed-off-by: Lei Feng Change-Id: Ie7fbf69790490681569e55461d9d38b026158ce9 Reviewed-on: https://review.whamcloud.com/c/doc/manual/+/53180 Tested-by: jenkins Reviewed-by: Andreas Dilger --- PersistentClientCache.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PersistentClientCache.xml b/PersistentClientCache.xml index 2c40419..5818868 100755 --- a/PersistentClientCache.xml +++ b/PersistentClientCache.xml @@ -171,7 +171,7 @@ mdt.lustre-MDT0000.hsm_control=enabled client# lhsmtool_posix --daemon --hsm-root $PCCPATH --archive=$ARCHIVE_ID $LUSTREPATH Examples: The following command adds a PCC backend on a client: - client# lctl pcc add /mnt/lustre /mnt/pcc --param "projid={500,1000}&fname={*.h5},uid=1001 rwid=2" + client# lctl pcc add /mnt/lustre /mnt/pcc --param "projid={500,1000}&fname={*.h5},uid={1001} rwid=2" The first substring of the config parameter is the auto-cache rule, where "&" represents the logical AND operator while "," represents the logical OR operator. The example rule means that new files are only -- 1.8.3.1