Skip to content
Snippets Groups Projects
Commit 410e7200 authored by Leigh B. Stoller's avatar Leigh B. Stoller
Browse files

Set email/shell for protouser.

parent 252c2bee
No related branches found
No related tags found
No related merge requests found
......@@ -24,6 +24,7 @@ my $mkacct = '@prefix@/sbin/tbacct add';
my $protouser = 'elabman';
my $protouser_name = 'Emulab Manager';
my $protouser_email = '@TBOPSEMAIL@';
my $protouser_shell = 'tcsh';
my $protoproj = 'emulab-ops';
my $protoproj_desc = 'Operations Meta-Project';
my $batchmode = 0;
......@@ -106,7 +107,8 @@ if (system "/usr/sbin/pw useradd $protouser -u $uid -g $agid -G $Ggid -h - " .
print "Creating user in database...\n";
DBQueryFatal("insert into users set uid='$protouser', usr_created=now(), " .
"usr_name='$protouser_name', usr_pswd='$encpass', unix_uid=$uid, ".
"usr_modified=now(), admin=1, webonly=1, status='active'");
"usr_modified=now(), admin=1, webonly=1, status='active', ".
"usr_shell='$protouser_shell', usr_email='$protouser_email'");
print "Creating project in database...\n";
DBQueryFatal("insert into projects set pid='$protoproj', created=now(), " .
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment