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
3c64292d
Commit
3c64292d
authored
Apr 05, 2012
by
Michael DeHaan
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #106 from skvidal/master
3 fixes/changes
parents
594b16a7
7e50d170
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
53 additions
and
47 deletions
+53
-47
ansible.spec
+1
-1
bin/ansible
+2
-27
bin/ansible-playbook
+3
-16
lib/ansible/utils.py
+42
-0
library/virt
+5
-3
No files found.
ansible.spec
View file @
3c64292d
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
%{!?python_sitelib: %global python_sitelib %(%{__python} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")}
Name: ansible
Name: ansible
Release: 1%{dist}
Release: 1%{
?
dist}
Summary: Minimal SSH command and control
Summary: Minimal SSH command and control
Version: 0.0.2
Version: 0.0.2
...
...
bin/ansible
View file @
3c64292d
...
@@ -47,37 +47,12 @@ class Cli(object):
...
@@ -47,37 +47,12 @@ class Cli(object):
def
parse
(
self
):
def
parse
(
self
):
''' create an options parser for bin/ansible '''
''' create an options parser for bin/ansible '''
parser
=
OptionParser
(
usage
=
'ansible <host-pattern> [options]'
)
parser
=
utils
.
base_parser
(
constants
=
C
,
runas_opts
=
True
,
async_opts
=
True
,
output_opts
=
True
,
usage
=
'ansible <host-pattern> [options]'
)
parser
.
add_option
(
'-a'
,
'--args'
,
dest
=
'module_args'
,
parser
.
add_option
(
'-a'
,
'--args'
,
dest
=
'module_args'
,
help
=
"module arguments"
,
default
=
C
.
DEFAULT_MODULE_ARGS
)
help
=
"module arguments"
,
default
=
C
.
DEFAULT_MODULE_ARGS
)
parser
.
add_option
(
'-B'
,
'--background'
,
dest
=
'seconds'
,
type
=
'int'
,
default
=
0
,
help
=
'run asynchronously, failing after X seconds'
)
parser
.
add_option
(
'-D'
,
'--debug'
,
default
=
False
,
action
=
"store_true"
,
help
=
'enable standard error debugging of modules.'
)
parser
.
add_option
(
'-f'
,
'--forks'
,
dest
=
'forks'
,
default
=
C
.
DEFAULT_FORKS
,
type
=
'int'
,
help
=
'number of parallel processes to use'
)
parser
.
add_option
(
'-i'
,
'--inventory-file'
,
dest
=
'inventory'
,
help
=
'inventory host file'
,
default
=
C
.
DEFAULT_HOST_LIST
)
parser
.
add_option
(
'-k'
,
'--ask-pass'
,
default
=
False
,
action
=
'store_true'
,
help
=
'ask for SSH password'
)
parser
.
add_option
(
'-M'
,
'--module-path'
,
dest
=
'module_path'
,
help
=
"path to module library"
,
default
=
C
.
DEFAULT_MODULE_PATH
)
parser
.
add_option
(
'-m'
,
'--module-name'
,
dest
=
'module_name'
,
parser
.
add_option
(
'-m'
,
'--module-name'
,
dest
=
'module_name'
,
help
=
"module name to execute"
,
default
=
C
.
DEFAULT_MODULE_NAME
)
help
=
"module name to execute"
,
default
=
C
.
DEFAULT_MODULE_NAME
)
parser
.
add_option
(
'-o'
,
'--one-line'
,
dest
=
'one_line'
,
action
=
'store_true'
,
help
=
'condense output'
)
parser
.
add_option
(
'-P'
,
'--poll'
,
default
=
C
.
DEFAULT_POLL_INTERVAL
,
type
=
'int'
,
dest
=
'poll_interval'
,
help
=
'set the poll interval if using -B'
)
parser
.
add_option
(
"-s"
,
"--sudo"
,
default
=
False
,
action
=
"store_true"
,
dest
=
'sudo'
,
help
=
"run operations with sudo (nopasswd)"
)
parser
.
add_option
(
'-t'
,
'--tree'
,
dest
=
'tree'
,
default
=
None
,
help
=
'log output to this directory'
)
parser
.
add_option
(
'-T'
,
'--timeout'
,
default
=
C
.
DEFAULT_TIMEOUT
,
type
=
'int'
,
dest
=
'timeout'
,
help
=
'set the SSH timeout in seconds'
)
parser
.
add_option
(
'-u'
,
'--user'
,
default
=
C
.
DEFAULT_REMOTE_USER
,
dest
=
'remote_user'
,
help
=
'connect as this user'
)
parser
.
add_option
(
'-p'
,
'--port'
,
default
=
C
.
DEFAULT_REMOTE_PORT
,
type
=
'int'
,
dest
=
'remote_port'
,
help
=
'set the remote ssh port'
)
options
,
args
=
parser
.
parse_args
()
options
,
args
=
parser
.
parse_args
()
self
.
callbacks
.
options
=
options
self
.
callbacks
.
options
=
options
...
...
bin/ansible-playbook
View file @
3c64292d
...
@@ -26,31 +26,18 @@ import ansible.playbook
...
@@ -26,31 +26,18 @@ import ansible.playbook
import
ansible.constants
as
C
import
ansible.constants
as
C
from
ansible
import
errors
from
ansible
import
errors
from
ansible
import
callbacks
from
ansible
import
callbacks
from
ansible
import
utils
def
main
(
args
):
def
main
(
args
):
''' run ansible-playbook operations '''
''' run ansible-playbook operations '''
# create parser for CLI options
# create parser for CLI options
parser
=
OptionParser
()
usage
=
"ans-playbook playbook.yml"
parser
.
usage
=
"ans-playbook playbook.yml ..."
parser
=
utils
.
base_parser
(
constants
=
C
,
usage
=
usage
)
parser
.
add_option
(
'-D'
,
'--debug'
,
default
=
False
,
action
=
"store_true"
,
help
=
'enable standard error debugging of modules.'
)
parser
.
add_option
(
'-f'
,
'--forks'
,
dest
=
'forks'
,
default
=
C
.
DEFAULT_FORKS
,
type
=
'int'
,
help
=
'set the number of forks to start up'
)
parser
.
add_option
(
"-i"
,
"--inventory-file"
,
dest
=
"inventory"
,
help
=
"inventory host file"
,
default
=
C
.
DEFAULT_HOST_LIST
)
parser
.
add_option
(
'-e'
,
'--extra-vars'
,
dest
=
'extra_vars'
,
parser
.
add_option
(
'-e'
,
'--extra-vars'
,
dest
=
'extra_vars'
,
help
=
'arguments to pass to the inventory script'
)
help
=
'arguments to pass to the inventory script'
)
parser
.
add_option
(
"-k"
,
"--ask-pass"
,
default
=
False
,
action
=
"store_true"
,
help
=
"ask for SSH password"
)
parser
.
add_option
(
"-M"
,
"--module-path"
,
dest
=
"module_path"
,
help
=
"path to module library"
,
default
=
C
.
DEFAULT_MODULE_PATH
)
parser
.
add_option
(
'-O'
,
'--override-hosts'
,
dest
=
"override_hosts"
,
default
=
None
,
parser
.
add_option
(
'-O'
,
'--override-hosts'
,
dest
=
"override_hosts"
,
default
=
None
,
help
=
"run playbook against these hosts regardless of inventory settings"
)
help
=
"run playbook against these hosts regardless of inventory settings"
)
parser
.
add_option
(
'-p'
,
'--port'
,
default
=
C
.
DEFAULT_REMOTE_PORT
,
type
=
'int'
,
dest
=
'remote_port'
,
help
=
'set the remote ssh port'
)
parser
.
add_option
(
'-T'
,
'--timeout'
,
default
=
C
.
DEFAULT_TIMEOUT
,
type
=
'int'
,
dest
=
'timeout'
,
help
=
"set the SSH timeout in seconds"
)
options
,
args
=
parser
.
parse_args
(
args
)
options
,
args
=
parser
.
parse_args
(
args
)
...
...
lib/ansible/utils.py
View file @
3c64292d
...
@@ -23,6 +23,8 @@ import shlex
...
@@ -23,6 +23,8 @@ import shlex
import
re
import
re
import
jinja2
import
jinja2
import
yaml
import
yaml
from
optparse
import
OptionParser
try
:
try
:
import
json
import
json
...
@@ -30,6 +32,8 @@ except ImportError:
...
@@ -30,6 +32,8 @@ except ImportError:
import
simplejson
as
json
import
simplejson
as
json
from
ansible
import
errors
from
ansible
import
errors
import
ansible.constants
as
C
###############################################################
###############################################################
# UTILITY FUNCTIONS FOR COMMAND LINE TOOLS
# UTILITY FUNCTIONS FOR COMMAND LINE TOOLS
...
@@ -270,3 +274,41 @@ def parse_kv(args):
...
@@ -270,3 +274,41 @@ def parse_kv(args):
options
[
k
]
=
v
options
[
k
]
=
v
return
options
return
options
def
base_parser
(
constants
=
C
,
usage
=
""
,
output_opts
=
False
,
runas_opts
=
False
,
async_opts
=
False
):
''' create an options parser for any ansible script '''
parser
=
OptionParser
(
usage
)
parser
.
add_option
(
'-D'
,
'--debug'
,
default
=
False
,
action
=
"store_true"
,
help
=
'enable standard error debugging of modules.'
)
parser
.
add_option
(
'-f'
,
'--forks'
,
dest
=
'forks'
,
default
=
constants
.
DEFAULT_FORKS
,
type
=
'int'
,
help
=
'number of parallel processes to use'
)
parser
.
add_option
(
'-i'
,
'--inventory-file'
,
dest
=
'inventory'
,
help
=
'inventory host file'
,
default
=
constants
.
DEFAULT_HOST_LIST
)
parser
.
add_option
(
'-k'
,
'--ask-pass'
,
default
=
False
,
action
=
'store_true'
,
help
=
'ask for SSH password'
)
parser
.
add_option
(
'-M'
,
'--module-path'
,
dest
=
'module_path'
,
help
=
"path to module library"
,
default
=
constants
.
DEFAULT_MODULE_PATH
)
parser
.
add_option
(
'-T'
,
'--timeout'
,
default
=
constants
.
DEFAULT_TIMEOUT
,
type
=
'int'
,
dest
=
'timeout'
,
help
=
'set the SSH timeout in seconds'
)
parser
.
add_option
(
'-p'
,
'--port'
,
default
=
constants
.
DEFAULT_REMOTE_PORT
,
type
=
'int'
,
dest
=
'remote_port'
,
help
=
'set the remote ssh port'
)
if
output_opts
:
parser
.
add_option
(
'-o'
,
'--one-line'
,
dest
=
'one_line'
,
action
=
'store_true'
,
help
=
'condense output'
)
parser
.
add_option
(
'-t'
,
'--tree'
,
dest
=
'tree'
,
default
=
None
,
help
=
'log output to this directory'
)
if
runas_opts
:
parser
.
add_option
(
"-s"
,
"--sudo"
,
default
=
False
,
action
=
"store_true"
,
dest
=
'sudo'
,
help
=
"run operations with sudo (nopasswd)"
)
parser
.
add_option
(
'-u'
,
'--user'
,
default
=
constants
.
DEFAULT_REMOTE_USER
,
dest
=
'remote_user'
,
help
=
'connect as this user'
)
if
async_opts
:
parser
.
add_option
(
'-P'
,
'--poll'
,
default
=
constants
.
DEFAULT_POLL_INTERVAL
,
type
=
'int'
,
dest
=
'poll_interval'
,
help
=
'set the poll interval if using -B'
)
parser
.
add_option
(
'-B'
,
'--background'
,
dest
=
'seconds'
,
type
=
'int'
,
default
=
0
,
help
=
'run asynchronously, failing after X seconds'
)
return
parser
library/virt
View file @
3c64292d
...
@@ -194,9 +194,7 @@ class Virt(object):
...
@@ -194,9 +194,7 @@ class Virt(object):
"nrVirtCpu"
:
data
[
3
],
"nrVirtCpu"
:
data
[
3
],
"cpuTime"
:
str
(
data
[
4
]),
"cpuTime"
:
str
(
data
[
4
]),
}
}
thisvm
=
self
.
conn
.
find_vm
(
vm
)
info
[
vm
][
"autostart"
]
=
self
.
conn
.
get_autostart
(
vm
)
if
hasattr
(
thisvm
,
'autostart'
):
info
[
vm
][
"autostart"
]
=
thisvm
.
autostart
()
return
info
return
info
...
@@ -378,6 +376,10 @@ def main():
...
@@ -378,6 +376,10 @@ def main():
# command=[some command] [guest=name]
# command=[some command] [guest=name]
params
=
{}
params
=
{}
if
'='
not
in
args
:
msg
=
"No proper arguments provided to virt module:
%
s"
%
args
return
VIRT_FAILED
,
msg
for
x
in
items
:
for
x
in
items
:
(
k
,
v
)
=
x
.
split
(
"="
)
(
k
,
v
)
=
x
.
split
(
"="
)
params
[
k
]
=
v
params
[
k
]
=
v
...
...
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