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
3f26a1c7
Commit
3f26a1c7
authored
Apr 16, 2012
by
Michael DeHaan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
verbose option is not being used, so remove it. debug variable still exists.
parent
78b5cd64
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
1 additions
and
8 deletions
+1
-8
bin/ansible
+1
-1
bin/ansible-playbook
+0
-1
lib/ansible/playbook.py
+0
-2
lib/ansible/runner.py
+0
-2
test/TestPlayBook.py
+0
-1
test/TestRunner.py
+0
-1
No files found.
bin/ansible
View file @
3f26a1c7
...
...
@@ -90,7 +90,7 @@ class Cli(object):
forks
=
options
.
forks
,
background
=
options
.
seconds
,
pattern
=
pattern
,
callbacks
=
self
.
callbacks
,
sudo
=
options
.
sudo
,
sudo_pass
=
sudopass
,
verbose
=
True
,
sudo_pass
=
sudopass
,
transport
=
options
.
connection
,
debug
=
options
.
debug
)
return
(
runner
,
runner
.
run
())
...
...
bin/ansible-playbook
View file @
3f26a1c7
...
...
@@ -67,7 +67,6 @@ def main(args):
override_hosts
=
override_hosts
,
forks
=
options
.
forks
,
debug
=
options
.
debug
,
verbose
=
True
,
remote_user
=
options
.
remote_user
,
remote_pass
=
sshpass
,
callbacks
=
playbook_cb
,
...
...
lib/ansible/playbook.py
View file @
3f26a1c7
...
...
@@ -60,7 +60,6 @@ class PlayBook(object):
transport
=
C
.
DEFAULT_TRANSPORT
,
override_hosts
=
None
,
debug
=
False
,
verbose
=
False
,
callbacks
=
None
,
runner_callbacks
=
None
,
stats
=
None
,
...
...
@@ -95,7 +94,6 @@ class PlayBook(object):
self
.
remote_port
=
remote_port
self
.
transport
=
transport
self
.
debug
=
debug
self
.
verbose
=
verbose
self
.
callbacks
=
callbacks
self
.
runner_callbacks
=
runner_callbacks
self
.
override_hosts
=
override_hosts
...
...
lib/ansible/runner.py
View file @
3f26a1c7
...
...
@@ -86,7 +86,6 @@ class Runner(object):
transport
=
C
.
DEFAULT_TRANSPORT
,
conditional
=
'True'
,
callbacks
=
None
,
verbose
=
False
,
debug
=
False
,
sudo
=
False
,
module_vars
=
None
,
...
...
@@ -146,7 +145,6 @@ class Runner(object):
self
.
module_vars
=
module_vars
self
.
timeout
=
timeout
self
.
debug
=
debug
self
.
verbose
=
verbose
self
.
remote_user
=
remote_user
self
.
remote_pass
=
remote_pass
self
.
remote_port
=
remote_port
...
...
test/TestPlayBook.py
View file @
3f26a1c7
...
...
@@ -136,7 +136,6 @@ class TestPlaybook(unittest.TestCase):
timeout
=
5
,
remote_user
=
self
.
user
,
remote_pass
=
None
,
verbose
=
False
,
stats
=
ans_callbacks
.
AggregateStats
(),
callbacks
=
self
.
test_callbacks
,
runner_callbacks
=
self
.
test_callbacks
...
...
test/TestRunner.py
View file @
3f26a1c7
...
...
@@ -29,7 +29,6 @@ class TestRunner(unittest.TestCase):
forks
=
1
,
background
=
0
,
pattern
=
'all'
,
verbose
=
True
,
)
self
.
cwd
=
os
.
getcwd
()
self
.
test_dir
=
os
.
path
.
join
(
self
.
cwd
,
'test'
)
...
...
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