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
afcda172
Commit
afcda172
authored
Nov 19, 2013
by
Michael DeHaan
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4934 from mscherer/fix_urpmi_2
return failed if a package couldn't be installed
parents
b29669dc
d66027ba
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletions
+8
-1
library/packaging/urpmi
+8
-1
No files found.
library/packaging/urpmi
View file @
afcda172
...
...
@@ -158,7 +158,14 @@ def install_packages(module, pkgspec, force=True, no_suggests=True):
cmd
=
(
"%s --auto %s --quiet %s %s > /dev/null"
%
(
URPMI_PATH
,
force_yes
,
no_suggests_yes
,
packages
))
rc
,
out
,
err
=
module
.
run_command
(
cmd
)
if
rc
:
installed
=
True
for
packages
in
pkgspec
:
if
not
query_package_provides
(
module
,
package
):
installed
=
False
#
urpmi
always
have
0
for
exit
code
if
--
force
is
used
if
rc
or
not
installed
:
module
.
fail_json
(
msg
=
"'urpmi %s' failed: %s"
%
(
packages
,
err
))
else
:
module
.
exit_json
(
changed
=
True
,
msg
=
"%s present(s)"
%
packages
)
...
...
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