1832921 Members
2810 Online
110048 Solutions
New Discussion

sw question

 
SOLVED
Go to solution
navin
Super Advisor

sw question

Is there a way to find out if the particular individual patch is part of the hpux std patch bundles.
thanks much
Learning ...
7 REPLIES 7
Ivan Krastev
Honored Contributor

Re: sw question

You can check with -v switch what is the install source of the installed patch:

#swlist -v patch_name

If the patch is not part of the latest bundle, it will be included in next release.

regards,
ivan
James R. Ferguson
Acclaimed Contributor
Solution

Re: sw question

Hi Navin:

Absolutely. Go the the ITRC Patch Database. Select the standard bundle in question (under find statndard patch bundles) and click on the bundle name. For example, QPK1123(B.11.23.0806.072).

When you do this, you will see the contents and be able to read the patch notes for every patch therein.

Regards!

...JRF...

navin
Super Advisor

Re: sw question

i see a patch in /var/adm/sw/products.But which is not listed when i do swlist with v option.any idea.
thanks
Learning ...
Ivan Krastev
Honored Contributor

Re: sw question

What about:
swlist -v -l patch patch_name

regards,
ivan
Andres_13
Respected Contributor

Re: sw question

... or maybe

# swlist -l product | grep PATCH_NAME

Regards!
Bill Hassell
Honored Contributor

Re: sw question

Actually, the simplest method is:

swlist -l patch

grep is not needed.


Bill Hassell, sysadmin
Dennis Handly
Acclaimed Contributor

Re: sw question

>I see a patch in /var/adm/sw/products. But which is not listed when I do swlist

This occurs if the patch has been superseded. So if you don't see it with:
swlist -l patch patch_ID
You'll need to use:
swlist -l patch -x show_superseded_patches=true patch_ID

You can leave out patch_ID (or add more than one).