nacl
nacl copied to clipboard
NaCl - An alternative interface to building SaltStack State data
Is there an equivalent for this code? Or should I just do: `with open('auth/users.json','r') as f: ...`? What would be the most elegant way to translate this to pyobjects? Thanks...
Hi, first: awesome work with NaCL/PyObjects I was pondering myself about a Pythonic interface to Puppet when I came across salt/nacl according to the docs you don't have an interface...
As [mentioned](https://gist.github.com/dlanderson/85787ee7a21f55873f2e) by @dlanderson, syncing the nacl renderer results in a traceback on latest develop branch of salt, at least under certain circumstances. I spent some time digging into the...
The way the renderer currently is coded, you can do stuff like this (a contrived example): ``` python interfaces = salt['network.interfaces']() File.exists('interface-tmp', names=['/tmp/interface-{}'.format(i) for i in interfaces.keys()]) ``` Would it...
It would be useful if the README provided some examples using the pillar, grains, and salt dicts that are injected by the renderer.