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
6bd06210
Commit
6bd06210
authored
Jun 23, 2014
by
James Cammarata
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'devel' of
https://github.com/ansible/ansible
into devel
parents
9564818e
5ad7dcf4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
40 additions
and
9 deletions
+40
-9
lib/ansible/runner/filter_plugins/core.py
+1
-0
library/cloud/vsphere_guest
+6
-6
library/database/mysql_db
+33
-3
No files found.
lib/ansible/runner/filter_plugins/core.py
View file @
6bd06210
...
...
@@ -226,6 +226,7 @@ class FilterModule(object):
'dirname'
:
os
.
path
.
dirname
,
'expanduser'
:
os
.
path
.
expanduser
,
'realpath'
:
os
.
path
.
realpath
,
'relpath'
:
os
.
path
.
relpath
,
# failure testing
'failed'
:
failed
,
...
...
library/cloud/vsphere_guest
View file @
6bd06210
...
...
@@ -496,7 +496,7 @@ def reconfigure_vm(vsphere_client, vm, module, esxi, resource_pool, cluster_name
# Change Memory
if
vm_hardware
[
'memory_mb'
]:
if
vm_hardware
[
'memory_mb'
]
!=
vm
.
properties
.
config
.
hardware
.
memoryMB
:
if
int
(
vm_hardware
[
'memory_mb'
])
!=
vm
.
properties
.
config
.
hardware
.
memoryMB
:
spec
=
spec_singleton
(
spec
,
request
,
vm
)
if
vm
.
is_powered_on
():
...
...
@@ -504,7 +504,7 @@ def reconfigure_vm(vsphere_client, vm, module, esxi, resource_pool, cluster_name
# No hot add but force
if
not
memoryHotAddEnabled
:
shutdown
=
True
elif
vm_hardware
[
'memory_mb'
]
<
vm
.
properties
.
config
.
hardware
.
memoryMB
:
elif
int
(
vm_hardware
[
'memory_mb'
])
<
vm
.
properties
.
config
.
hardware
.
memoryMB
:
shutdown
=
True
else
:
# Fail on no hot add and no force
...
...
@@ -514,7 +514,7 @@ def reconfigure_vm(vsphere_client, vm, module, esxi, resource_pool, cluster_name
"required for shutdown"
)
# Fail on no force and memory shrink
elif
vm_hardware
[
'memory_mb'
]
<
vm
.
properties
.
config
.
hardware
.
memoryMB
:
elif
int
(
vm_hardware
[
'memory_mb'
])
<
vm
.
properties
.
config
.
hardware
.
memoryMB
:
module
.
fail_json
(
msg
=
"Cannot lower memory on a live VM. force is "
"required for shutdown"
)
...
...
@@ -525,7 +525,7 @@ def reconfigure_vm(vsphere_client, vm, module, esxi, resource_pool, cluster_name
# ====( Config Memory )====#
if
vm_hardware
[
'num_cpus'
]:
if
vm_hardware
[
'num_cpus'
]
!=
vm
.
properties
.
config
.
hardware
.
numCPU
:
if
int
(
vm_hardware
[
'num_cpus'
])
!=
vm
.
properties
.
config
.
hardware
.
numCPU
:
spec
=
spec_singleton
(
spec
,
request
,
vm
)
if
vm
.
is_powered_on
():
...
...
@@ -533,7 +533,7 @@ def reconfigure_vm(vsphere_client, vm, module, esxi, resource_pool, cluster_name
# No hot add but force
if
not
cpuHotAddEnabled
:
shutdown
=
True
elif
vm_hardware
[
'num_cpus'
]
<
vm
.
properties
.
config
.
hardware
.
numCPU
:
elif
int
(
vm_hardware
[
'num_cpus'
])
<
vm
.
properties
.
config
.
hardware
.
numCPU
:
if
not
cpuHotRemoveEnabled
:
shutdown
=
True
else
:
...
...
@@ -544,7 +544,7 @@ def reconfigure_vm(vsphere_client, vm, module, esxi, resource_pool, cluster_name
"required for shutdown"
)
# Fail on no force and cpu shrink without hot remove
elif
vm_hardware
[
'num_cpus'
]
<
vm
.
properties
.
config
.
hardware
.
numCPU
:
elif
int
(
vm_hardware
[
'num_cpus'
])
<
vm
.
properties
.
config
.
hardware
.
numCPU
:
if
not
cpuHotRemoveEnabled
:
module
.
fail_json
(
msg
=
"Cannot lower CPU on a live VM without "
...
...
library/database/mysql_db
View file @
6bd06210
...
...
@@ -151,12 +151,42 @@ def db_import(module, host, user, password, db_name, target, port, socket=None):
cmd
+=
" --host=
%
s --port=
%
s"
%
(
pipes
.
quote
(
host
),
pipes
.
quote
(
port
))
cmd
+=
" -D
%
s"
%
pipes
.
quote
(
db_name
)
if
os
.
path
.
splitext
(
target
)[
-
1
]
==
'.gz'
:
cmd
=
'gunzip < '
+
pipes
.
quote
(
target
)
+
' | '
+
cmd
gunzip_path
=
module
.
get_bin_path
(
'gunzip'
)
if
gunzip_path
:
rc
,
stdout
,
stderr
=
module
.
run_command
(
'
%
s
%
s'
%
(
gunzip_path
,
target
))
if
rc
!=
0
:
return
rc
,
stdout
,
stderr
cmd
+=
" <
%
s"
%
pipes
.
quote
(
os
.
path
.
splitext
(
target
)[
0
])
rc
,
stdout
,
stderr
=
module
.
run_command
(
cmd
,
use_unsafe_shell
=
True
)
if
rc
!=
0
:
return
rc
,
stdout
,
stderr
gzip_path
=
module
.
get_bin_path
(
'gzip'
)
if
gzip_path
:
rc
,
stdout
,
stderr
=
module
.
run_command
(
'
%
s
%
s'
%
(
gzip_path
,
os
.
path
.
splitext
(
target
)[
0
]))
else
:
module
.
fail_json
(
msg
=
"gzip command not found"
)
else
:
module
.
fail_json
(
msg
=
"gunzip command not found"
)
elif
os
.
path
.
splitext
(
target
)[
-
1
]
==
'.bz2'
:
cmd
=
'bunzip2 < '
+
pipes
.
quote
(
target
)
+
' | '
+
cmd
bunzip2_path
=
module
.
get_bin_path
(
'bunzip2'
)
if
bunzip2_path
:
rc
,
stdout
,
stderr
=
module
.
run_command
(
'
%
s
%
s'
%
(
bunzip2_path
,
target
))
if
rc
!=
0
:
return
rc
,
stdout
,
stderr
cmd
+=
" <
%
s"
%
pipes
.
quote
(
os
.
path
.
splitext
(
target
)[
0
])
rc
,
stdout
,
stderr
=
module
.
run_command
(
cmd
,
use_unsafe_shell
=
True
)
if
rc
!=
0
:
return
rc
,
stdout
,
stderr
bzip2_path
=
module
.
get_bin_path
(
'bzip2'
)
if
bzip2_path
:
rc
,
stdout
,
stderr
=
module
.
run_command
(
'
%
s
%
s'
%
(
bzip2_path
,
os
.
path
.
splitext
(
target
)[
0
]))
else
:
module
.
fail_json
(
msg
=
"bzip2 command not found"
)
else
:
module
.
fail_json
(
msg
=
"bunzip2 command not found"
)
else
:
cmd
+=
" <
%
s"
%
pipes
.
quote
(
target
)
rc
,
stdout
,
stderr
=
module
.
run_command
(
cmd
,
use_unsafe_shell
=
True
)
rc
,
stdout
,
stderr
=
module
.
run_command
(
cmd
,
use_unsafe_shell
=
True
)
return
rc
,
stdout
,
stderr
def
db_create
(
cursor
,
db
,
encoding
,
collation
):
...
...
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