- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- How to put several products into one bundle in SD ...
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2004 05:14 AM
04-15-2004 05:14 AM
I wish to know how I can manipulate SD depots.
In expample for SSH I need to install
openssh, openssl and zlib.
I now wish to create a bundle containing these 3 products without adding a new depot.
The result should be a depot containing several bundles with all required product for each and not (as it is with standard swcopy) a huge list of non-bundles products and admins need to know which products are required to run the required "application".
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2004 05:30 AM
04-15-2004 05:30 AM
Re: How to put several products into one bundle in SD depots?
Create a Product Specification File. The HP Manual, Managing HP-UX Software With SD-UX has lots of information on this in Chapter 10. Although there are many fields that you can include, only a few are required. I have a Perl script called "psf" which generates a minimum .psf file given that you follow a few simple rules:
Put all of the files that you want to include under one directory.
Name the directory using the following format: name-major.minor. For example, sed-2.05 or gcc-2.7.2.3.
Run the script from the parent of this directory and give it only a simple directory name(s). For example:
psf sed-2.05 gcc-2.7.2.3 > stuff.psf
If you give it an absolute path name, you will have to manually edit the resulting .psf file to fix the directory mappings.
This script assumes that you want everything to be installed into /usr/local. If you want to change that, you'll have to edit my psf script. It would be easy to make the destination directory a command line argument, but I haven't done so because thus far I'm the only one who uses psf. Just search for "=/usr/local" and change that to whatever you like, "/usr/share/sysadm" for example.
Also, check out this cookbook:
http://aa11.cjb.net/hpux_admin/1999/0024.html
And CREATING YOUR OWN SD-UX DEPOTS :
http://www.hpworks.org.uk/newsletter/articles/depots/
Rgds...Geoff
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2004 07:00 PM
04-15-2004 07:00 PM
Solution1) create one directory, say mydir
2) Use swcopy to copy depots files to mydir
3) Use following command:
#make_bundle -B -n
In this way you can keep adding depots file to Bundle and Bundle to depot which can reside at mydir.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-15-2004 08:48 PM
04-15-2004 08:48 PM
Re: How to put several products into one bundle in SD depots?
If you alter the products mentioned in this scrit. this is all you need te create a depot.
PS. This script is supplied if you download multiple patches, to create your own patch bundle.
HTH,
Gideon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
04-19-2004 02:42 AM
04-19-2004 02:42 AM
Re: How to put several products into one bundle in SD depots?
A good tip, thx.