diff options
author | Dylan William Hardison <dylan@hardison.net> | 2017-05-17 00:50:52 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2017-05-17 00:50:52 +0200 |
commit | 38b13ae3f1885faa0da1d0040a0dda87dc786515 (patch) | |
tree | 30f3e47437f9e1633c2da3d1fc3b138dcb1ebd26 /extensions/BMO | |
parent | 2216a50a64cfc340975099905e7187e08d962d34 (diff) | |
download | bugzilla-38b13ae3f1885faa0da1d0040a0dda87dc786515.tar.gz bugzilla-38b13ae3f1885faa0da1d0040a0dda87dc786515.tar.xz |
use non-whimsical string for lbheartbeat
Diffstat (limited to 'extensions/BMO')
-rw-r--r-- | extensions/BMO/Extension.pm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/extensions/BMO/Extension.pm b/extensions/BMO/Extension.pm index 1bf6ebf8c..2a84cc077 100644 --- a/extensions/BMO/Extension.pm +++ b/extensions/BMO/Extension.pm @@ -2527,16 +2527,16 @@ sub install_filesystem { my $create_files = $args->{create_files}; my $extensions_dir = bz_locations()->{extensionsdir}; $create_files->{__lbheartbeat__} = { - perms => Bugzilla::Install::Filesystem::WS_SERVE, - contents => 'This mission is too important for me to allow you to jeopardize it.', + perms => Bugzilla::Install::Filesystem::WS_SERVE, + overwrite => 1, + contents => 'httpd OK', }; - # version.json needs to have a source attribute pointing to # our repository. We already have this information in the (static) # contribute.json file, so parse that in my $json = JSON::XS->new->pretty->utf8->canonical(); - my $contribute = eval { + my $contribute = eval { $json->decode(scalar read_file(bz_locations()->{cgi_path} . "/contribute.json")); }; my $commit = `git rev-parse HEAD`; |