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
f89e5315
Commit
f89e5315
authored
Feb 27, 2014
by
James Tanner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add install_repoquery parameter to the yum module
parent
c11e2100
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
25 additions
and
0 deletions
+25
-0
library/packaging/yum
+25
-0
No files found.
library/packaging/yum
View file @
f89e5315
...
...
@@ -94,6 +94,16 @@ options:
default: "no"
choices: ["yes", "no"]
aliases: []
install_repoquery:
description:
- If repoquery is not available, install yum-utils
required: false
version_added: "1.5"
default: no
choices: ["yes", "no"]
aliaes: []
notes: []
# informational: requirements for nodes
requirements: [ yum, rpm ]
...
...
@@ -154,6 +164,17 @@ def yum_base(conf_file=None, cachedir=False):
return
my
def
install_yum_utils
(
module
):
if
not
module
.
check_mode
:
yum_path
=
module
.
get_bin_path
(
'yum'
)
if
yum_path
:
rc
,
so
,
se
=
module
.
run_command
(
'
%
s -y install yum-utils'
%
yum_path
)
if
rc
==
0
:
this_path
=
module
.
get_bin_path
(
'repoquery'
)
global
repoquery
repoquery
=
this_path
def
po_to_nevra
(
po
):
if
hasattr
(
po
,
'ui_nevra'
):
...
...
@@ -789,6 +810,7 @@ def main():
list
=
dict
(),
conf_file
=
dict
(
default
=
None
),
disable_gpg_check
=
dict
(
required
=
False
,
default
=
"no"
,
type
=
'bool'
),
install_repoquery
=
dict
(
required
=
False
,
default
=
"no"
,
type
=
'bool'
),
),
required_one_of
=
[[
'name'
,
'list'
]],
mutually_exclusive
=
[[
'name'
,
'list'
]],
...
...
@@ -797,6 +819,9 @@ def main():
params
=
module
.
params
if
params
.
install_repoquery
and
not
repoquery
and
not
module
.
check_mode
:
install_yum_utils
(
module
)
if
params
[
'list'
]:
if
not
repoquery
:
module
.
fail_json
(
msg
=
"repoquery is required to use list= with this module. Please install the yum-utils package."
)
...
...
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