Sponsored Content
Operating Systems HP-UX Verify Hardware installed HP-UX11 Post 302145004 by Cameron on Monday 12th of November 2007 10:17:51 AM
Old 11-12-2007
You might like to try the following:
Code:
#!/usr/bin/ksh
. $HOME/.profile
/opt/ignite/bin/print_manifest > $RECOVERYDIR/`hostname`/manifest.txt
echo >> $RECOVERYDIR/`hostname`/manifest.txt
echo "Non Default Kernel Parameters" >> $RECOVERYDIR/`hostname`/manifest.txt
echo >> $RECOVERYDIR/`hostname`/manifest.txt
/usr/sbin/kctune -Sd >> $RECOVERYDIR/`hostname`/manifest.txt
mailx -s "Manifest for `hostname`" $Operations_reports <  $RECOVERYDIR/`hostname`/manifest.txt

Incidentals:
$Operations_reports - refers to an email distribution list.
$RECOVERYDIR - refers to a location on the file system.

Hope that helps some. Smilie

Cheers,
Cameron
 

10 More Discussions You Might Find Interesting

1. HP-UX

rsync for HP-UX11.0

Was using rsync for Hp-UX 10.20, would like to find out is it available for HP-UX 11. If not is that anything equivalent for HP-UX11.0. I am trying to sync the content of 2 folders. Thanks alot for any help! (2 Replies)
Discussion started by: gelbvonn
2 Replies

2. Shell Programming and Scripting

migration from hp-ux11.11 to hp-ux 11.23

Hi all Can any one guide me what changes may occur with this OS version migration. If you could give some links, that would be helpful too. Regards, Ranj (2 Replies)
Discussion started by: ranj@chn
2 Replies

3. UNIX for Dummies Questions & Answers

Verify Hardware installed on HP-UX 11

Hi - Basic question from newbie I need to find out how to verify hardware installed on HPUX server. Mid-range server - as in i need to prove to customer that a specific cpu is installed, so much memory is installed, etc. PLEASE HELP. TA (1 Reply)
Discussion started by: hoffies
1 Replies

4. HP-UX

flex++ parser for HP-UX11

Hi, can anyone tell me were to download flex++ parser for HP-UX11 BR vasanth (1 Reply)
Discussion started by: vasanthan
1 Replies

5. HP-UX

rpm on HP-UX11

How to install rpm on HP-UX 11i best regards vasanth (3 Replies)
Discussion started by: vasanthan
3 Replies

6. HP-UX

RPM on hp-ux11.11 PARISC

Hi Im trying to build and install rpm on our hp-ux server, can you please tell me how this is achived....I have tried several ways its failing I have downloaded berkeley db and build on my system, when i have seen rpm source file i found berkelydb in that folder..Do i kneed to build again ... (2 Replies)
Discussion started by: vasanthan
2 Replies

7. Shell Programming and Scripting

how to verify sqlplus not installed on solaris

i want to write shell script that exit by displaying error if sqlplus is not installed. The platform is oracle10g on solaris sparc. I tried the which sqlplus command, but it returns errorcode 0 even sqlplus is not installed. Kindly help? (3 Replies)
Discussion started by: mmunir
3 Replies

8. News, Links, Events and Announcements

Hp-ux11.11_openmotif

Hello every one, i am attempting to install motif on HP-UX 11.11 ,which motif version i have to use for installation &where can i get that motif versin. pls provide the information like websites which are containing open motif to install it on HP-UX 11.11. IT'S VERY URGENT. any help... (3 Replies)
Discussion started by: mannam srinivas
3 Replies

9. Red Hat

How to verify the current NIC driver version installed in RHEL5.3??

Guys, Can you help me how to verify the current installed NIC driver version in RHEL5.3? Thanks.:D (1 Reply)
Discussion started by: shtobias
1 Replies

10. Shell Programming and Scripting

How-to verify if my package installed successfully

Can you please let me know how can i verify /check inside the script if the below to package installation commands are successful or if they failed for any reasons? 1. pkgadd -a $INSTP/install/dadmin -d $INSTP/install/apachesrv.pkg 2. pkgadd -a $INSTP/install/dadmin -d... (6 Replies)
Discussion started by: mohtashims
6 Replies
smf_bootstrap(5)					Standards, Environments, and Macros					  smf_bootstrap(5)

NAME
smf_bootstrap - service management facility boot, packaging, and compatibility behavior DESCRIPTION
The service management facility defines a series of conventions for importing the configuration contained within a service manifest or pro- file into a repository. Manifest loading at boot At system start, svc.startd(1M) run in default mode begins processing the manifests located in /var/svc/manifest and importing new or changed manifests into the repositorty. The decision to import a service manifest is based on the existence of a property group in the svc:/smf/manifest service with the following characteristics: o The name of the property group is the name of the imported manifest with non-alphanumeric characters replaced by underscore (_) char- acters. o The properties of the property group are set based on the manifest contents. The manifest is not reimported in the event that configuration changes are made to the repository by an administrator. Such configuration changes might include the deletion of one or more services or service instances contained within the manifest. The /var/svc/manifest/site directory is provided for site-specific customizations. The deletion of a property group by means of svccfg(1M) or libscf(3LIB) interfaces allows the manifest to be reimported on a subsequent system boot. Manifest handling during packaging operations Service manifests within packages are identified with the class manifest. Class action scripts that install and remove service manifests are included in the packaging subsystem. When pkgadd(1M) is invoked, the service manifest is imported. When pkgrm(1M) is invoked, instances in the manifest that are disabled are deleted. Any services in the manifest with no remaining instances are also deleted. Stability declarations Each service group and each property group delivered in a manifest should declare a stability level based on attributes(5) definitions. With knowledge of the stability level, an application developer can determine the likelihood that feature development based on the exis- tence or components of a service or object is likely to remain functional across a release boundary. In an smf(5) context, the stability value also identifies the expected scope of the changes to properties within the property group across a release boundary for the service, which can include patches for that service. The following two sections discuss this in more detail. Property overrides The service_bundle(4) document type definition includes an override attribute that is applicable to each property in a service manifest. If set to true, the attribute instructs svccfg(1M) and other manifest import tools to replace the current value of a property in the reposi- tory with the one from the manifest. If the override attribute is absent or present but set to false, the current value in the repository is preserved. Property groups declared as Stable do not contain override attributes on enclosed properties. Property groups declared as Evolving do so only to correct an erroneous setting. Property groups declared as Unstable can contain overrides on any property. The exception to this behavior is for the stability property itself, which can be modified to identify incipient change to the interface presented by the ser- vice. Property group deletion The service_bundle(4) document type definition includes a delete attribute, applicable to each property group in a service manifest. If set to true, the delete attribute instructs svccfg(1M) and other manifest import tools to delete this property group from the repository. If the delete attribute is absent or present but set to false, the property group in the repository is preserved. Property groups declared as Stable or Evolving are not deleted. Property groups declared as Unstable can be deleted across any release boundary. Profile application The first time the existence of each of the three service profiles listed below is detected, svc.startd(1M) automatically applies the pro- file. /var/svc/profile/generic.xml /var/svc/profile/platform.xml /var/svc/profile/site.xml The svc:/smf/manifest service is used in a similar fashion. Additional service profiles that characterize the activation of various groups of service instances might be present in /var/svc/profile. None of the /var/svc/profile profiles are automatically applied to the repository. A profile can be manually applied or re-applied using svcadm(1M). SEE ALSO
pkgadd(1M), pkgrm(1M), svcadm(1M), svccfg(1M), svc.startd(1M), libscf(3LIB), service_bundle(4), attributes(5), smf(5), smf_security(5) NOTES
The present version of smf(5) does not support multiple repositories. SunOS 5.10 27 Aug 2004 smf_bootstrap(5)
All times are GMT -4. The time now is 03:31 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy