This will unify all the handlers to use first uppercase letter for
ansible-lint to stop complaining.
I went through all `notify:` occurrences and fixed them by running
```
set TEXT "text_to_replace"; set REPLACEMENT "replacement_text"; git grep
-rlz "$TEXT" . | xargs -0 sed -i "s/$TEXT/$REPLACEMENT/g"
```
Then I went through all the changes and removed the ones that wasn't
expected to be changed.
Fixes https://pagure.io/fedora-infrastructure/issue/12391
Signed-off-by: Michal Konecny <mkonecny@redhat.com>
fix 1900 failures of the following case issue:
`name[casing]: All names should start with an uppercase letter.`
Signed-off-by: Ryan Lerch <rlerch@redhat.com>
BLOCKERBUGS_URL needs to be defined in order to show correct links in the
staging environment. While fixing that, realized that most of the if-else
clauses were unnecessary, because there are already group vars for that. So
simplified the config file by using the vars. KOJI_URL is dropped because it's
no longer needed.
Related: https://pagure.io/fedora-qa/blockerbugs/issue/192
There was an unannounced change to rhbz where the default number of
results returned for a query was changed to 20.
This should be a temporary change that will need to be reverted when a
new version of blockerbugs is released with this capability built in.
This extends the last change that ensures a local "blockerbugs" user
exists on the sync machine. Unfortunately, that doesn't work unless the
group specified already exists.
Turns out that the httpd_can_network_connect sebool has to be set in
newer OSs (previous was el7) in order for python_openid to be able to
initiate discovery as part of login.
This is a simple change that sets httpd_can_network_connect to 1 for the
blockerbugs role that should only affect machines running the app.
There was a change with a recent upgrade to flask-sqlalchemy so that
SQLALCHEMY_TRACK_MODIFICATIONS will no longer be enabled by default
in future releases. As we're not using it, I'm explicitly setting that
to False in the hopes that most/some of the cron emails go away if
the warning isn't emitted during blockerbugs sync.