mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 09:23:56 +00:00
Add local test returner to verify the interface
This commit is contained in:
parent
cdd1ea8d82
commit
5cd4bae0ae
10
salt/returners/local.py
Normal file
10
salt/returners/local.py
Normal 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
|
Loading…
Reference in New Issue
Block a user