You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
validate_useraccount() {
# don't check that USERNAME has been set because it can be emptylocal USERLOGIN=$(get_option USERLOGIN)local USERPASSWORD=$(get_option USERPASSWORD)local USERGROUPS=$(get_option USERGROUPS)if [ -n"$USERLOGIN" ] && [ -n"$USERPASSWORD" ] && [ -n"$USERGROUPS" ];then
USERACCOUNT_DONE=1
fi
}
The above check (in installer.sh) prevents creation of user without secondary groups. I think USERGROUPS can be left unchecked like USERNAME.
The text was updated successfully, but these errors were encountered:
The above check (in
installer.sh
) prevents creation of user without secondary groups. I thinkUSERGROUPS
can be left unchecked likeUSERNAME
.The text was updated successfully, but these errors were encountered: