Bugzilla – Attachment 14177 Details for
Bug 8840
ubuntu-pkg-check.sh fix and extend functionality
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Correct incorrect reporting
0002-Bug-8840-Patch-to-solve-false-All-dependencies-insta.patch (text/plain), 1.74 KB, created by
Mark Tompsett
on 2012-12-17 21:18:35 UTC
(
hide
)
Description:
Correct incorrect reporting
Filename:
MIME Type:
Creator:
Mark Tompsett
Created:
2012-12-17 21:18:35 UTC
Size:
1.74 KB
patch
obsolete
>From ae8b4c06a52d8e747336f9fa2ecb1971ffd5d665 Mon Sep 17 00:00:00 2001 >From: Mark Tompsett <mtompset@hotmail.com> >Date: Mon, 17 Dec 2012 15:51:33 -0500 >Subject: [PATCH 2/2] Bug 8840 - Patch to solve false "All dependencies > installed!" > >Reordered logic to accumulate MISSING_PATCHES variable and tweak >condition to be certain it was not failing. >--- > install_misc/ubuntu-packages.sh | 19 +++++++++++-------- > 1 file changed, 11 insertions(+), 8 deletions(-) > >diff --git a/install_misc/ubuntu-packages.sh b/install_misc/ubuntu-packages.sh >index ef2c2c6..f734fea 100755 >--- a/install_misc/ubuntu-packages.sh >+++ b/install_misc/ubuntu-packages.sh >@@ -141,16 +141,19 @@ for PACKAGE in $UBUNTU_PACKAGES; do > # Test if the package is installed > PACKAGE_INSTALLED=`packageInstalled $PACKAGE` > >+ # Determine the package version if it is installed. >+ if [ "$PACKAGE_INSTALLED" == "yes" ]; then >+ PACKAGE_VERSION=`getPackageVersion $PACKAGE` >+ >+ # otherwise default to 'none'. >+ else >+ PACKAGE_VERSION="none" >+ MISSING_PACKAGES="$PACKAGE $MISSING_PACKAGES" >+ fi >+ > # If we are supposed to report... > if [ "$CHECK" == "yes" ]; then > >- # Determine the package version if it is installed. >- if [ "$PACKAGE_INSTALLED" == "yes" ]; then >- PACKAGE_VERSION=`getPackageVersion $PACKAGE` >- # otherwise default to 'none'. >- else >- PACKAGE_VERSION="none" >- fi > > # report the package name and version number. > echo "$PACKAGE = $PACKAGE_VERSION" >@@ -163,7 +166,7 @@ for PACKAGE in $UBUNTU_PACKAGES; do > done > > # If we aren't reporting, then the last echo didn't have a newline. >-if [ "$CHECK" != "yes" ]; then >+if [ ! "$CHECK" == "yes" ]; then > echo > fi > >-- >1.7.9.5 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 8840
:
12566
|
12594
|
12599
|
12610
|
12613
|
13200
|
14171
|
14176
|
14177
|
16539
|
16540
|
18096
|
18097