Add local test returner to verify the interface

This commit is contained in:
Thomas S Hatch 2011-04-16 16:18:12 -06:00
parent cdd1ea8d82
commit 5cd4bae0ae

10
salt/returners/local.py Normal file
View File

@ -0,0 +1,10 @@
'''
The local returner is used to test the returner interface, it just prints the
return data to the console to verify that it is being passed properly
'''
def returner(ret):
'''
Print the return data to the terminal to verify functionality
'''
print ret