From: Varsha Rao Date: Fri, 29 May 2020 17:54:54 +0000 (+0530) Subject: mgr/nfs: Instead of 'auth del' use 'auth rm' X-Git-Tag: wip-pdonnell-testing-20200918.022351~1133^2~1 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=87c517af310a2fb0a5226867b6a852393c0f6b44;p=ceph-ci.git mgr/nfs: Instead of 'auth del' use 'auth rm' `mgr` profile allows 'auth rm'. Use it instead of 'auth del' which is not allowed. Signed-off-by: Varsha Rao --- diff --git a/src/pybind/mgr/volumes/fs/nfs.py b/src/pybind/mgr/volumes/fs/nfs.py index 95a65cc53eb..5bdabcf8976 100644 --- a/src/pybind/mgr/volumes/fs/nfs.py +++ b/src/pybind/mgr/volumes/fs/nfs.py @@ -224,7 +224,7 @@ class FSExport(object): def _delete_user(self, entity): self.mgr.check_mon_command({ - 'prefix': 'auth del', + 'prefix': 'auth rm', 'entity': 'client.{}'.format(entity), }) log.info(f"Export user deleted is {entity}")