cloudpanel-io / docs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Missing single quotes around passowrd reset command

ayntk-ai opened this issue · comments

In the docs for password reset the quotes are missing in the command, to work properly quotes around the name are necessary.
Command in the docs:

clpctl user:reset:password --userName=john.doe --password='!newPassword!'

Correct Command:

clpctl user:reset:password --userName='john.doe' --password='!newPassword!'