Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
6ca67c61
Commit
6ca67c61
authored
10 years ago
by
Michael DeHaan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Starting to stub out some classes.
parent
a707f5ac
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
107 additions
and
0 deletions
+107
-0
v2/ansible/executor/HostLog.py
+23
-0
v2/ansible/executor/HostLogManager.py
+9
-0
v2/ansible/executor/HostPlaybookIterator.py
+32
-0
v2/ansible/executor/PlaybookExecutor.py
+15
-0
v2/ansible/executor/TaskExecutor.py
+12
-0
v2/ansible/executor/TaskQueueManager.py
+16
-0
No files found.
v2/ansible/executor/HostLog.py
View file @
6ca67c61
...
...
@@ -14,3 +14,26 @@
#
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
class
HostLog
(
object
):
def
__init__
(
self
,
host
):
self
.
host
=
host
def
add_task_result
(
self
,
task_result
):
pass
def
has_failures
(
self
):
assert
False
def
has_changes
(
self
):
assert
False
def
get_tasks
(
self
,
are_executed
=
None
,
are_changed
=
None
,
are_successful
=
None
):
assert
False
def
get_current_running_task
(
self
)
# atomic decorator likely required?
assert
False
This diff is collapsed.
Click to expand it.
v2/ansible/executor/HostLogManager.py
View file @
6ca67c61
...
...
@@ -14,3 +14,12 @@
#
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
class
HostLogManager
(
object
):
def
__init__
(
self
):
pass
def
get_log_for_host
(
self
,
host
):
assert
False
This diff is collapsed.
Click to expand it.
v2/ansible/executor/HostPlaybookIterator.py
0 → 100644
View file @
6ca67c61
# (c) 2012-2014, Michael DeHaan <michael.dehaan@gmail.com>
#
# This file is part of Ansible
#
# Ansible is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# Ansible is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
class
HostPlaybookIterator
(
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 doesn’t have any more work to do
assert
False
This diff is collapsed.
Click to expand it.
v2/ansible/executor/PlaybookExecutor.py
View file @
6ca67c61
...
...
@@ -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 it’s playbook class and context
# tqm.enqueue(block)
# tqm.go()...
assert
False
This diff is collapsed.
Click to expand it.
v2/ansible/executor/TaskExecutor.py
View file @
6ca67c61
...
...
@@ -14,3 +14,15 @@
#
# You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
class
TaskExecutor
(
object
):
def
__init__
(
self
,
task
,
host
):
pass
def
run
(
self
):
# returns TaskResult
pass
This diff is collapsed.
Click to expand it.
v2/ansible/executor/TaskQueueManager.py
View file @
6ca67c61
...
...
@@ -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 doesn’t have any more work to do
assert
False
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment