Skip to content

Commit a6e7b46

Browse files
committed
Merge pull request saltstack#4074 from holmboe/silent-outputter
Silent outputter
2 parents 4f5c187 + 1ce2d60 commit a6e7b46

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

salt/output/no_out.py

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
'''
2+
Display no output.
3+
'''
4+
5+
def __virtual__():
6+
return 'none'
7+
8+
def output(ret):
9+
'''
10+
Don't display data. Used when you only are interested in the
11+
return.
12+
'''
13+
return ''

0 commit comments

Comments
 (0)