Starting to stub out some classes.

This commit is contained in:
Michael DeHaan
2014-10-15 15:53:43 -07:00
parent a707f5acfe
commit 6ca67c61cb
6 changed files with 107 additions and 0 deletions

View File

@@ -14,3 +14,18 @@
#
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
class PlaybookExecutor(object):
def __init__(self, list_of_plays=[]):
# self.tqm = TaskQueueManager(forks)
assert False
def run(self):
# for play in list_of_plays:
# for block in play.blocks:
# # block must know its playbook class and context
# tqm.enqueue(block)
# tqm.go()...
assert False