diff options
author | Dave Lawrence <dlawrence@mozilla.com> | 2012-06-05 23:13:44 +0200 |
---|---|---|
committer | Dave Lawrence <dlawrence@mozilla.com> | 2012-06-05 23:13:44 +0200 |
commit | bcdd07c5568a8280a2fc79ae4960c80f5b3b7592 (patch) | |
tree | 690b8ff3b8d6749709bda0ff9d27709f6bd3c19f | |
parent | 1079586051beb43e6a09914b0678f02942aa62b0 (diff) | |
download | bugzilla-bcdd07c5568a8280a2fc79ae4960c80f5b3b7592.tar.gz bugzilla-bcdd07c5568a8280a2fc79ae4960c80f5b3b7592.tar.xz |
Bug 761666 - custom field bugzilla e-mails need to be changed
-rw-r--r-- | extensions/BMO/Extension.pm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/extensions/BMO/Extension.pm b/extensions/BMO/Extension.pm index 4b9a1d2fb..658fa67a0 100644 --- a/extensions/BMO/Extension.pm +++ b/extensions/BMO/Extension.pm @@ -732,9 +732,11 @@ sub field_end_of_create { push @message, ''; push @message, "The custom field '$name' has been added to the BMO database."; push @message, ''; - push @message, 'Please run the following on tm-bugs01-master01:'; - push @message, " GRANT SELECT ON `bugs`.`$name` TO 'metrics'\@'10.2.70.20_';"; - push @message, " GRANT SELECT ($name) ON `bugs`.`bugs` TO 'metrics'\@'10.2.70.20_';"; + push @message, 'Please run the following on tp-bugs01-master01:'; + push @message, " GRANT SELECT ON `bugs`.`$name` TO 'metrics'\@'10.8.70.20_';"; + push @message, " GRANT SELECT ($name) ON `bugs`.`bugs` TO 'metrics'\@'10.8.70.20_';"; + push @message, " GRANT SELECT ON `bugs`.`$name` TO 'metrics'\@'10.8.70.21_';"; + push @message, " GRANT SELECT ($name) ON `bugs`.`bugs` TO 'metrics'\@'10.8.70.21_';"; push @message, ''; MessageToMTA(join("\n", @message)); } |