diff --git a/salt/returners/local.py b/salt/returners/local.py new file mode 100644 index 0000000000..11c155e12b --- /dev/null +++ b/salt/returners/local.py @@ -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