<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How do you make a Patch Bundle? in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/how-do-you-make-a-patch-bundle/m-p/2431840#M3340</link>
    <description>The commands to create the patch "depot" from the patch shell archives&lt;BR /&gt;is ok, but to put everything into a "bundle" you just need the command&lt;BR /&gt;"make_bundles" - which comes with the Ignite/UX product (look in &lt;BR /&gt;&lt;A href="http://www.software.hp.com/products/IUX" target="_blank"&gt;http://www.software.hp.com/products/IUX&lt;/A&gt; to download it - it is free :-)&lt;BR /&gt;Install it, and then use "make_bundle -B -n All-Patches -d /var/spool/sw".&lt;BR /&gt;That's it.&lt;BR /&gt;Wodisch</description>
    <pubDate>Thu, 20 Jul 2000 22:34:38 GMT</pubDate>
    <dc:creator>Wodisch</dc:creator>
    <dc:date>2000-07-20T22:34:38Z</dc:date>
    <item>
      <title>How do you make a Patch Bundle?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-do-you-make-a-patch-bundle/m-p/2431832#M3332</link>
      <description>hiya,&lt;BR /&gt;&lt;BR /&gt;i need to create a Patch Bundle with several patches I''ve downloaded.  However I've never used 'swpackage', and the man page is confusing.  Can someone simply explain how I can do this?</description>
      <pubDate>Thu, 20 Jul 2000 07:51:36 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-do-you-make-a-patch-bundle/m-p/2431832#M3332</guid>
      <dc:creator>Andrew Brain or Yong Ji</dc:creator>
      <dc:date>2000-07-20T07:51:36Z</dc:date>
    </item>
    <item>
      <title>Re: How do you make a Patch Bundle?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-do-you-make-a-patch-bundle/m-p/2431833#M3333</link>
      <description>Hi I'd do this :-&lt;BR /&gt;&lt;BR /&gt;Assuming you've not unshar'ed them :-&lt;BR /&gt;&lt;BR /&gt;in the directory all the patches are :-&lt;BR /&gt;&lt;BR /&gt;for i in `ls PH*`&lt;BR /&gt;do&lt;BR /&gt;sh $i&lt;BR /&gt;swcopy -s &lt;PATH&gt;/$I.depot \* @ /var/spool/sw&lt;BR /&gt;done&lt;BR /&gt;&lt;BR /&gt;replace &lt;PATH&gt; with the full path of the directory the patches are in. like /tmp&lt;BR /&gt;&lt;BR /&gt;You can then either swinstall the patches from /var/spool/sw or then package them to tape using&lt;BR /&gt;&lt;BR /&gt;swpackage -s /var/spool/sw -d /dev/rmt/0m -x target_type=tape&lt;/PATH&gt;&lt;/PATH&gt;</description>
      <pubDate>Thu, 20 Jul 2000 08:06:58 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-do-you-make-a-patch-bundle/m-p/2431833#M3333</guid>
      <dc:creator>Andy Monks</dc:creator>
      <dc:date>2000-07-20T08:06:58Z</dc:date>
    </item>
    <item>
      <title>Re: How do you make a Patch Bundle?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-do-you-make-a-patch-bundle/m-p/2431834#M3334</link>
      <description>Let's make the assumption that the patches are in tar-format in the /tmp/patch directory:&lt;BR /&gt;&lt;BR /&gt;# cd /tmp/patch&lt;BR /&gt;# for i in /tmp/patch/PH??_?????&lt;BR /&gt;&amp;gt;do&lt;BR /&gt;&amp;gt;sh $I&lt;BR /&gt;&amp;gt;swcopy -s $i.depot * @ /var/patches&lt;BR /&gt;&amp;gt;done&lt;BR /&gt;&lt;BR /&gt;# swlist -l product @ /var/patches&lt;BR /&gt;</description>
      <pubDate>Thu, 20 Jul 2000 08:10:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-do-you-make-a-patch-bundle/m-p/2431834#M3334</guid>
      <dc:creator>Patrick Wessel</dc:creator>
      <dc:date>2000-07-20T08:10:38Z</dc:date>
    </item>
    <item>
      <title>Re: How do you make a Patch Bundle?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-do-you-make-a-patch-bundle/m-p/2431835#M3335</link>
      <description>I'VE ALREADY SHARED THE FILE, SO NOW I HAVEA LIST OF .depot AND .text FILES.</description>
      <pubDate>Thu, 20 Jul 2000 08:13:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-do-you-make-a-patch-bundle/m-p/2431835#M3335</guid>
      <dc:creator>Andrew Brain or Yong Ji</dc:creator>
      <dc:date>2000-07-20T08:13:57Z</dc:date>
    </item>
    <item>
      <title>Re: How do you make a Patch Bundle?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-do-you-make-a-patch-bundle/m-p/2431836#M3336</link>
      <description>In that case, don't put the line in 'sh $i'</description>
      <pubDate>Thu, 20 Jul 2000 08:14:56 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-do-you-make-a-patch-bundle/m-p/2431836#M3336</guid>
      <dc:creator>Andy Monks</dc:creator>
      <dc:date>2000-07-20T08:14:56Z</dc:date>
    </item>
    <item>
      <title>Re: How do you make a Patch Bundle?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-do-you-make-a-patch-bundle/m-p/2431837#M3337</link>
      <description>Hi,&lt;BR /&gt;&lt;BR /&gt;Patrick and Andy are correct. But there are a few other thing you should watch out for when you plan to install all the patches in the bundle.&lt;BR /&gt;&lt;BR /&gt;- when you have several patches that require a reboot, it might be handy to swmodify the is_reboot flag to false for all patches. The reboot can be done manually at the end of the installation, are can be integrated in a script that takes care of installing the patches and the reboot&lt;BR /&gt;&lt;BR /&gt;- Watch out for patch dependencies and installation order. The patches in your bundle will be installed in alphabetical order. This means that PHCO patches will be installed before PHKL patches and so forth. If there is a dependency between different patche, make sure they are installed in the correct order. This is OK if the alphabetical order is the order of installation. In the other case, you can split the patches into 2 bundles to ensure the right installation order.&lt;BR /&gt;&lt;BR /&gt;Hope this information is of some help,&lt;BR /&gt;Rik</description>
      <pubDate>Thu, 20 Jul 2000 08:28:37 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-do-you-make-a-patch-bundle/m-p/2431837#M3337</guid>
      <dc:creator>RikTytgat</dc:creator>
      <dc:date>2000-07-20T08:28:37Z</dc:date>
    </item>
    <item>
      <title>Re: How do you make a Patch Bundle?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-do-you-make-a-patch-bundle/m-p/2431838#M3338</link>
      <description>Changing the reboot flag is not necessary.  Placing the patches into a single depot and installing same will automatically defer the reboot unil the end of the swinstall session.</description>
      <pubDate>Thu, 20 Jul 2000 14:22:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-do-you-make-a-patch-bundle/m-p/2431838#M3338</guid>
      <dc:creator>Alan Riggs</dc:creator>
      <dc:date>2000-07-20T14:22:17Z</dc:date>
    </item>
    <item>
      <title>Re: How do you make a Patch Bundle?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-do-you-make-a-patch-bundle/m-p/2431839#M3339</link>
      <description>Be sure to check out the patch White Paper in /usr/share/doc/patch_pgrm.txt&lt;BR /&gt;&lt;BR /&gt;Best Wishes,&lt;BR /&gt;Cheryl</description>
      <pubDate>Thu, 20 Jul 2000 19:10:08 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-do-you-make-a-patch-bundle/m-p/2431839#M3339</guid>
      <dc:creator>Cheryl Griffin</dc:creator>
      <dc:date>2000-07-20T19:10:08Z</dc:date>
    </item>
    <item>
      <title>Re: How do you make a Patch Bundle?</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/how-do-you-make-a-patch-bundle/m-p/2431840#M3340</link>
      <description>The commands to create the patch "depot" from the patch shell archives&lt;BR /&gt;is ok, but to put everything into a "bundle" you just need the command&lt;BR /&gt;"make_bundles" - which comes with the Ignite/UX product (look in &lt;BR /&gt;&lt;A href="http://www.software.hp.com/products/IUX" target="_blank"&gt;http://www.software.hp.com/products/IUX&lt;/A&gt; to download it - it is free :-)&lt;BR /&gt;Install it, and then use "make_bundle -B -n All-Patches -d /var/spool/sw".&lt;BR /&gt;That's it.&lt;BR /&gt;Wodisch</description>
      <pubDate>Thu, 20 Jul 2000 22:34:38 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/how-do-you-make-a-patch-bundle/m-p/2431840#M3340</guid>
      <dc:creator>Wodisch</dc:creator>
      <dc:date>2000-07-20T22:34:38Z</dc:date>
    </item>
  </channel>
</rss>

