Merge pull request #4019 from halaharvi/develop

Fixing Salt Runners documentation
This commit is contained in:
Thomas S Hatch 2013-03-09 14:24:37 -08:00
commit 312720063f

View File

@ -46,7 +46,7 @@ responding to Salt calls would look like this:
'''
Print a list of all of the minions that are up
'''
client = salt.client.LocalClient(__opts__['config'])
client = salt.client.LocalClient(__opts__['conf_file'])
minions = client.cmd('*', 'test.ping', timeout=1)
for minion in sorted(minions):
print minion