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>
Ignore errors when cleaning up packages after removed releases -- the
releases might already be gone when cleanup-packages is run.
See also 9f64d9661 and c2ed129aa.
* Fix line folding syntax. The previous version caused vertical
whitespace to be included in the output which broke the crontab.
* Rename clean up job so that it doesn't contain any variables.
Including variables in a name makes it difficult to remove or change
the job when the variable changes.
* Code style consistency.
The job was broken before because the backup directory
(`/srv/faf/db-backup`) might not have existed.
Also, factor out some magic values into variables.
* Drop the `not devel` flag on FAF repository management tasks.
* Ignore errors when deleting repositories -- they might be gone already
when repodel is run.