hook in the minion startup

This commit is contained in:
Thomas S Hatch 2011-02-27 14:14:26 -07:00
parent 9274b14f10
commit c7cb7cbb69

View file

@ -45,3 +45,10 @@ class Minion(object):
'config': options.config}
return cli
def start(self):
'''
Execute this method to start up a minion.
'''
minion = salt.Minion(opts)
minion.tune_in()