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
757fb39a
Commit
757fb39a
authored
Jun 09, 2015
by
Brian Coca
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
now uses new module_loader
parent
24b7c353
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lib/ansible/cli/pull.py
+2
-2
No files found.
lib/ansible/cli/pull.py
View file @
757fb39a
...
...
@@ -26,9 +26,9 @@ import sys
from
ansible
import
constants
as
C
from
ansible.errors
import
AnsibleError
,
AnsibleOptionsError
from
ansible.cli
import
CLI
from
ansible.plugins
import
module_loader
from
ansible.utils.display
import
Display
from
ansible.utils.vault
import
read_vault_file
from
ansible.utils.plugins
import
module_finder
from
ansible.utils.cmd_functions
import
run_cmd
########################################################
...
...
@@ -127,7 +127,7 @@ class PullCLI(CLI):
if
self
.
options
.
private_key_file
:
repo_opts
+=
' key_file=
%
s'
%
self
.
options
.
private_key_file
path
=
module_
fin
der
.
find_plugin
(
self
.
options
.
module_name
)
path
=
module_
loa
der
.
find_plugin
(
self
.
options
.
module_name
)
if
path
is
None
:
raise
AnsibleOptionsError
((
"module '
%
s' not found.
\n
"
%
self
.
options
.
module_name
))
...
...
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