mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
set up some framework for the minion.py module
This commit is contained in:
parent
bd890a523a
commit
ed36409dcd
1 changed files with 15 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue