<TimMc>
This is just something I cobbled together, so it's not like... the Official Right Way of doing things. Some parts are kind of janky or inconsistent, but the files/ and templates/ folders should give you some sense of what the config looks like on disk. If you have any questions, let me know!
<hairwhale>
I don't really know what I'm looking at. I've read a bit about ansible but never used it
<hairwhale>
I'll read up a bit more. Still need to learn some of the basics I guess
<TimMc>
hairwhale: Ansible has some YAML-based "scripts" in the main/ and handler/ directories, and those control where the files in files/ and templates/ land in the filesystem.
<TimMc>
The templates use Jinja templating, so you'll see some {{variable_substitution}} in the .j2 files.
<TimMc>
so if you want to see *where* the files end up, the answers can be found in tasks/*.yml :-)
<TimMc>
Most of the yml is just "put this file here, make sure this service is started, install this package..." and really you can ignore everything but the "put this file here"