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
3de4e457
Commit
3de4e457
authored
Aug 21, 2012
by
Michael DeHaan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Move plugin directories
parent
bf92a9e4
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
2 additions
and
2 deletions
+2
-2
lib/ansible/callback_plugins/noop.py
+0
-0
lib/ansible/callbacks.py
+1
-1
lib/ansible/runner/connection.py
+1
-1
lib/ansible/runner/connection_plugins/local.py
+0
-0
lib/ansible/runner/connection_plugins/paramiko_ssh.py
+0
-0
lib/ansible/runner/connection_plugins/ssh.py
+0
-0
No files found.
lib/ansible/callbacks/noop.py
→
lib/ansible/callback
_plugin
s/noop.py
View file @
3de4e457
File moved
lib/ansible/callbacks.py
View file @
3de4e457
...
...
@@ -24,7 +24,7 @@ import os.path
from
ansible.color
import
stringc
dirname
=
os
.
path
.
dirname
(
__file__
)
callbacks
=
utils
.
import_plugins
(
os
.
path
.
join
(
dirname
,
'callbacks'
))
callbacks
=
utils
.
import_plugins
(
os
.
path
.
join
(
dirname
,
'callback
_plugin
s'
))
callbacks
=
[
c
.
CallbackModule
()
for
c
in
callbacks
.
values
()
]
cowsay
=
None
...
...
lib/ansible/runner/connection.py
View file @
3de4e457
...
...
@@ -23,7 +23,7 @@ from ansible.errors import AnsibleError
import
os.path
dirname
=
os
.
path
.
dirname
(
__file__
)
modules
=
utils
.
import_plugins
(
os
.
path
.
join
(
dirname
,
'connections'
))
modules
=
utils
.
import_plugins
(
os
.
path
.
join
(
dirname
,
'connection
_plugin
s'
))
# rename this module
modules
[
'paramiko'
]
=
modules
[
'paramiko_ssh'
]
...
...
lib/ansible/runner/connections/local.py
→
lib/ansible/runner/connection
_plugin
s/local.py
View file @
3de4e457
File moved
lib/ansible/runner/connections/paramiko_ssh.py
→
lib/ansible/runner/connection
_plugin
s/paramiko_ssh.py
View file @
3de4e457
File moved
lib/ansible/runner/connections/ssh.py
→
lib/ansible/runner/connection
_plugin
s/ssh.py
View file @
3de4e457
File moved
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