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,19 @@
#
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
class TaskQueueManagerHostPlaybookIterator(object):
def __init__(self, host, playbook):
pass
def get_next_task(self):
assert False
def is_blocked(self):
# depending on strategy, either
# linear -- all prev tasks must be completed for all hosts
# free -- this host doesnt have any more work to do
assert False