From 8f3b3cc1f9eb61a0bd348581bd6b254107d6e2ea Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Sat, 2 May 2020 11:21:05 +0200 Subject: [PATCH] administration-guide.rst: add example to disable/remove a user --- docs/administration-guide.rst | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/administration-guide.rst b/docs/administration-guide.rst index e2a531f37..d065092b2 100644 --- a/docs/administration-guide.rst +++ b/docs/administration-guide.rst @@ -245,6 +245,19 @@ The resulting use list looks like this: Newly created users do not have an permissions. Please read the next section to learn how to set access permissions. +If you want to disable an user account, you can do that by setting ``--enable`` to ``0`` + +.. code-block:: console + + # proxmox-backup-manager user update john@pbs --enable 0 + +Or completely remove the users with: + +.. code-block:: console + + # proxmox-backup-manager user remove john@pbs + + Access Control ~~~~~~~~~~~~~~