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
254d6be5
Commit
254d6be5
authored
Oct 07, 2015
by
Juraci
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Adding get_path method to Task class
parent
9e364c2e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
lib/ansible/playbook/task.py
+6
-0
No files found.
lib/ansible/playbook/task.py
View file @
254d6be5
...
...
@@ -101,6 +101,12 @@ class Task(Base, Conditional, Taggable, Become):
super
(
Task
,
self
)
.
__init__
()
def
get_path
(
self
):
''' return the absolute path of the task with its line number '''
if
hasattr
(
self
,
'_ds'
):
return
"
%
s:
%
s"
%
(
self
.
_ds
.
_data_source
,
self
.
_ds
.
_line_number
)
def
get_name
(
self
):
''' return the name of the task '''
...
...
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