TIL: Override puppet from always pulling facts from puppetdb
I never quite understood how puppet always kept pulling facts from `puppetdb` when I ran `puppet facts show` even though I wanted to run the facts locally, like `facter -p`, but `facter` couldn't see my non default module path where all my local facts were
I tried the options `--terminus facter` per the documentation but still `puppetdb` kept being used. In the end, I had a hack that would force local facts to run, but I was never happy with it:
```
puppet facts find $(uuidgen) --modulepath /path/to/modules
```
I ended up digging away for a few hours, even asking the AI and got taken in circles. I ended up asking a competing AI the same question and it pointed me in the right place immediately. It seems if you have `storeconfigs` set true for `puppetdb`, it seems the puppet "redirector code" overrides all other options and consideration and assumes you really want to use `puppetdb`
So, the solution? To turn off store configs when you wanted facts to be calculated immediately
``` puppet facts show --no-storeconfigs --modulepath /path/to/modules
```
Also got the added bonus of `puppet facts show` (vs `find`) is that it has the `--timing` option to test how long each fact takes to run