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>
This used a syntax that was from an old EL and does not work with
newer Fedora with systemctl. Hat tip to misc for helping me figure out
which rpm had the file in it and then what the right syntax was.
We use rsyslog, the syslog file has no effect.
If we overrite rsyslog we get the effect we want (daily logrotate with
xz compression).
Signed-off-by: Kevin Fenzi <kevin@scrye.com>
Patrick and Adam and I had a meeting this morning to discuss how
to deploy Redis to be used as a shared cache for the registry
nodes. Patrick suggested that we could instead disable the regstry
caching layer and rely on Varnish to do all our caching, which
makes the system simpler. This commit disables the in-memory cache
of the registries so they won't get out of sync on write
operations.
Signed-off-by: Randy Barlow <randy@electronsweatshop.com>