diff options
author | David Lawrence <dkl@mozilla.com> | 2015-07-17 03:00:39 +0200 |
---|---|---|
committer | David Lawrence <dkl@mozilla.com> | 2015-07-17 03:03:29 +0200 |
commit | dc87344e0798f4d2826a5b790897ce7f6682437b (patch) | |
tree | 6cdd89eea6194adeb2c93dde27a409ed94b0f6e4 /docker | |
parent | 22d71ed7fe2599a9ee269bafe43df8094d34755d (diff) | |
download | bugzilla-dc87344e0798f4d2826a5b790897ce7f6682437b.tar.gz bugzilla-dc87344e0798f4d2826a5b790897ce7f6682437b.tar.xz |
Bug 1183524 - api bustage caused by bug 1173442
Diffstat (limited to 'docker')
-rwxr-xr-x | docker/generate_bmo_data.pl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docker/generate_bmo_data.pl b/docker/generate_bmo_data.pl index 45cde24f0..84b0f0bf8 100755 --- a/docker/generate_bmo_data.pl +++ b/docker/generate_bmo_data.pl @@ -386,6 +386,10 @@ foreach my $group (@groups) { } } +# Update default security group settings for new products +my $default_security_group = Bugzilla::Group->new({ name => 'core-security' }); +$dbh->do('UPDATE products SET security_group_id = ?', undef, $default_security_group->id); + ########################################################################## # Set Parameters ########################################################################## |