sulu: updated readme

This commit is contained in:
Vivek Kumar Dutta 2024-08-05 14:14:14 +05:30
parent 1b63c05762
commit 33387c8e40

View file

@ -115,6 +115,7 @@ In the below example, I use command line tool, but same operations can be done f
Some global variables before proceeding further Some global variables before proceeding further
UNAME=testuser UNAME=testuser
UPASS=testuser123
## Create an User Role ## Create an User Role
@ -131,7 +132,7 @@ obuspa -c set ${ROLE}.Enable 1
USER="$(obuspa -c add Device.Users.User. |cut -d " " -f 2)" USER="$(obuspa -c add Device.Users.User. |cut -d " " -f 2)"
obuspa -c set ${USER}.Username ${UNAME} obuspa -c set ${USER}.Username ${UNAME}
obuspa -c set ${USER}.Password ${UNAME}123 obuspa -c set ${USER}.Password ${UPASS}
obuspa -c set ${USER}.RoleParticipation ${ROLE} obuspa -c set ${USER}.RoleParticipation ${ROLE}
obuspa -c set ${USER}.Enable 1 obuspa -c set ${USER}.Enable 1
``` ```