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
user.userInfo.isNormalUser = args.isNormalUser || prompt!bool("Is this a normal or root user");
193
190
user.userInfo.extraGroups = (args.extraGroups !="" ? args.extraGroups : prompt!string("Enter the user's extra groups (comma delimited)", getGroups())).split(",").map!(strip).array;
194
191
createUserDir(user);
195
192
return user;
@@ -400,8 +397,6 @@ struct CreateMachineArgs
400
397
string machineName;
401
398
@(NamedArgument(["description"]).Placeholder("description").Description("Description of the user"))
402
399
string description;
403
-
@(NamedArgument(["is-normal-user"]).Placeholder("true/false").Description("Is this a normal user"))
404
-
bool isNormalUser;
405
400
@(NamedArgument(["extra-groups"]).Placeholder("group1,group2").Description("Extra groups for the user"))
406
401
string extraGroups;
407
402
@(NamedArgument(["machine-type"]).Placeholder("desktop/server/container").Description("Type of machine"))
0 commit comments