mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Add ping function to the tests module
This commit is contained in:
parent
322df50029
commit
dc9e7da5ef
1 changed files with 8 additions and 2 deletions
|
@ -1,6 +1,5 @@
|
|||
'''
|
||||
Module for shelling out commands, inclusion of this module should be
|
||||
configurable for security reasons
|
||||
Module for running arbitrairy tests
|
||||
'''
|
||||
|
||||
def echo(text):
|
||||
|
@ -9,3 +8,10 @@ def echo(text):
|
|||
'''
|
||||
print 'Echo got called!'
|
||||
return text
|
||||
|
||||
def ping():
|
||||
'''
|
||||
Just used to make sure the minion is up and responding
|
||||
Return True
|
||||
'''
|
||||
return True
|
||||
|
|
Loading…
Add table
Reference in a new issue