1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-08 21:18:16 +03:00

netcmd: user: Fix typo in samba-tool error message

Fix typo in "samba-tool user add" error message when adding a user with
NIS features : the argument for the uid number is --uid-number and not
--uidNumber.

RN: Fix typo in samba-tool error message.

Signed-off-by: Lyanis Souidi <lyanis.souidi@u-pec.fr>
Reviewed-by: Jennifer Sutton <josutton@catalyst.net.nz>
Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
This commit is contained in:
Lyanis Souidi 2024-09-09 16:34:19 +02:00 committed by Douglas Bagnall
parent 5ad8536ec7
commit 8d0b8178dd

View File

@ -186,7 +186,7 @@ Example5 shows how to add a new RFC2307/NIS domain enabled user account. If
if None in (uid_number, login_shell, unix_home, gid_number):
raise CommandError('Missing parameters. To enable NIS features, '
'the following options have to be given: '
'--nis-domain=, --uidNumber=, --login-shell='
'--nis-domain=, --uid-number=, --login-shell='
', --unix-home=, --gid-number= Operation '
'cancelled.')