Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.mylyn.bugzilla.releng/modules/bugzilla/templates/Extension.pm.erb')
-rw-r--r--org.eclipse.mylyn.bugzilla.releng/modules/bugzilla/templates/Extension.pm.erb7
1 files changed, 7 insertions, 0 deletions
diff --git a/org.eclipse.mylyn.bugzilla.releng/modules/bugzilla/templates/Extension.pm.erb b/org.eclipse.mylyn.bugzilla.releng/modules/bugzilla/templates/Extension.pm.erb
index c9ff65bdc..b61d4c014 100644
--- a/org.eclipse.mylyn.bugzilla.releng/modules/bugzilla/templates/Extension.pm.erb
+++ b/org.eclipse.mylyn.bugzilla.releng/modules/bugzilla/templates/Extension.pm.erb
@@ -62,6 +62,10 @@ sub install_before_final_checks {
# create tests@mylyn.eclipse.org
# add this user to group bz_canusewhineatothers
my $testu = Bugzilla::User->create({ login_name => 'tests@mylyn.eclipse.org',
+<% if @envversionInternal >= "5.1" %>
+
+ email => 'tests@mylyn.eclipse.org',
+<% end %>
realname => 'Mylyn Test',
cryptpassword => 'mylyntest' });
my $private_group = new Bugzilla::Group({name => 'bz_canusewhineatothers'});
@@ -72,6 +76,9 @@ sub install_before_final_checks {
# create guest@mylyn.eclipse.org
Bugzilla::User->create({ login_name => 'guest@mylyn.eclipse.org',
+<% if @envversionInternal >= "5.1" %>
+ email => 'guest@mylyn.eclipse.org',
+<% end %>
realname => 'Mylyn guest',
cryptpassword => 'mylyntest' });
}

Back to the top