refuse to create a new user with empty password
parent
bf2e0f7737
commit
3c4bc681c3
|
@ -377,7 +377,7 @@ namespace OpenSim.Services.UserAccountService
|
||||||
{
|
{
|
||||||
string firstName;
|
string firstName;
|
||||||
string lastName;
|
string lastName;
|
||||||
string password;
|
string password = "";
|
||||||
string email;
|
string email;
|
||||||
string rawPrincipalId;
|
string rawPrincipalId;
|
||||||
string model;
|
string model;
|
||||||
|
@ -393,7 +393,22 @@ namespace OpenSim.Services.UserAccountService
|
||||||
else lastName = cmdparams[3];
|
else lastName = cmdparams[3];
|
||||||
|
|
||||||
if (cmdparams.Length < 5)
|
if (cmdparams.Length < 5)
|
||||||
|
{
|
||||||
|
int retries = 3;
|
||||||
|
while(--retries >= 0)
|
||||||
|
{
|
||||||
password = MainConsole.Instance.Prompt("Password", null, null, false);
|
password = MainConsole.Instance.Prompt("Password", null, null, false);
|
||||||
|
if(String.IsNullOrWhiteSpace(password))
|
||||||
|
MainConsole.Instance.Output(" You must provide a Password");
|
||||||
|
else
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (String.IsNullOrWhiteSpace(password))
|
||||||
|
{
|
||||||
|
MainConsole.Instance.Output("create user aborted");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
else password = cmdparams[4];
|
else password = cmdparams[4];
|
||||||
|
|
||||||
if (cmdparams.Length < 6)
|
if (cmdparams.Length < 6)
|
||||||
|
|
Loading…
Reference in New Issue