set up some framework for the minion.py module

This commit is contained in:
Thomas S Hatch 2011-02-26 16:05:51 -07:00
parent bd890a523a
commit ed36409dcd

View file

@ -7,4 +7,19 @@ import os
import salt.crypt
import salt.utils
class Minion(object):
'''
This class instanciates a minion, runs connections for a minion, and loads
all of the functions into the minion
'''
def __init__(self, opts):
'''
Pass in the options dict
'''
self.opts = opts
def authenticate(self):
'''
Authenticate with the master
'''
pass