Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
themeRDark
update user alice STAFF
update user -m bob ADMIN,DEVELOPER
update user -a false alice

passwd

Used to change the password. A member of the supergroup can change password of any users. All other users can only change their own password. Parameters:
<username> the user name you want to change the password, optional parameter

...

Code Block
languagebash
themeRDark
remove permission "add user"
remove permission "add app"

Examples

...

Add a new group and a new user

New user can add users to system.

...

Code Block
languagebash
themeRDark
add permission -g STAFF "show users"
add permission -g STAFF "add user"
add permission -g STAFF "update user"
add permission -g STAFF "remove user"

...


Add a new user identical to existing user

1.Adding the user, jon


Code Block
languagebash
themeRDark
add user jon jonsPassword STAFF
show users

...

Code Block
languagebash
themeRDark
update user -a false jon
show users -d

...


Add a user with privileges

New user can view other users information

...