_systemd_ automatically recursively changes the ownership of the paths
listed in `StateDirectory` when the unit is activated. This can take a
very long time, as the Loki storage directory contains hundreds of
thousands of files. Since we also have `podman` change the ownership,
that *doubles* the time taken. Similarly, with `podman` also configured
to change the SELinux label of the files in that path, even more time is
wasted at startup.
To avoid all these time wasters, we need to avoid having _systemd_
manage the state directory and create it with the proper ownership and
SELinux label manually. Here, we're only manipulating the metadata of
the top-level directory; anything within the directory is untouched.
This ensures that the directory is always there and has the correct
permissions, but does not spend any time changing anything that doesn't
need changed.