source: MondoRescue/branches/2.2.10/mindi/mindi-bkphw@ 2703

Last change on this file since 2703 was 2703, checked in by Bruno Cornec, 13 years ago

r4179@localhost: bruno | 2011-01-27 08:06:03 +0100

  • Replace usage of pvs with pvscan for speed reasons in analyze-my-lvm (still some speed optimizations to do in that script)
  • Workaround problems met on RHEL 5.2 and 5.4 around pvs command generating a list of \n separated pvs with back quotes in an unexpected way. Could be linked to a b ash bug in this context ?
  • Adds /etc/rpc and /etc/netconfig as minimal deps for mindi for latest NFS support (mdv 2010.2 at least)


Port 2.2.9 recent changes to 2.2.10
svk merge -r 4174:4178 local/mondorescue/branches/2.2.9 .

  • Property svn:executable set to *
File size: 3.8 KB
RevLine 
[1761]1#!/usr/bin/perl -w
2#
[1777]3# $Id$
4#
[1761]5# Backup the hardware configuration on machine supporting it
6# (Bios configuration, Raid configuration, ...)
7#
8use strict;
9use File::Basename;
10
11# Handling Configuration files
12my $tool = "";
13my $tooldir = "";
14my $ret = 0;
15
16die "No CACHE_DIR parameter" if ((not defined $ARGV[0]) || (! -d $ARGV[0]));
[1911]17my $locbkpdir = "/bkphw";
[1913]18my $bkpdir = "$ARGV[0]$locbkpdir";
[1761]19die "No CONF_DIR parameter" if ((not defined $ARGV[1]) || (! -d $ARGV[1]));
20my $confdir = "$ARGV[1]";
21
[1877]22die "You need dmidecode for Hardware support\n" if (! -x "/usr/sbin/dmidecode");
23
[1782]24mkdir $bkpdir,0755 if (! -d $bkpdir) ;
[1877]25open(SYSTEM,"/usr/sbin/dmidecode -s 'system-product-name' 2> /dev/null |") || die "You need /usr/sbin/dmidecode for mindi hardware support";
[1761]26my $productname = <SYSTEM>;
27close(SYSTEM);
28
[1844]29die "ERROR: No product name found for Hardware support\n" if (not defined $productname);
[1795]30
[1761]31chomp($productname);
32if ($productname =~ /proliant/i) {
[1814]33 print "Detected a $productname. Nice. Continue to support my job :-)\n";
[1761]34 print "Activating Proliant support for mindi\n";
35 open(PROLIANT,"$confdir/proliant.files") || die "Unable to open $confdir/proliant.files";
36 open(TOOLS,"> $bkpdir/../tools.files") || die "Unable to open $bkpdir/../tools.files";
37 open(SCRIPT,"> $bkpdir/../mindi-rsthw") || die "Unable to open $bkpdir/../mindi-rsthw";
[1835]38 print SCRIPT << 'EOF';
[1761]39#!/bin/bash
40#
41# This script will restore potentially your HW configuration
42# on your system before partioning occurs
43# You may want to reboot after that step if you think that
44# resetting BIOS parameters to the value restored
45# may have an impact on you restoration process
46#
[1834]47# put dynamic libraries at an accessible place
48for l in /usr/local/lib/*; do
49 ln -sf $l /usr/lib
50done
[1761]51EOF
52 while($tool = <PROLIANT>) {
53 next if ($tool =~ /^#/);
54 chomp($tool);
55 $tooldir = dirname($tool);
[2703]56 if (! (-x $tool)) {
[1761]57 print "You should install the SmartStart Scripting toolkit tool $tool\nto benefit from mindi's enhanced hardware support\n";
58 print "Get it from http://www.hp.com/servers/sstoolkit\n";
59 next;
60 } else {
61 print "Found $tool, activating enhanced HP Proliant support in mindi\n";
62 print TOOLS "$tool\n";
63 }
64 if ($tool =~ /\/conrep$/) {
[1777]65 $ret = system("cd $tooldir ; $tool -s -f$bkpdir/conrep.dat");
[1911]66 print SCRIPT "(cd $tooldir ; $tool -l -f$locbkpdir/conrep.dat)\n";
[1761]67 print TOOLS "$tool.xml\n";
68 }
[1833]69 if ($tool =~ /\/.acuxebin$/) {
[1814]70 my $dir=basename($tool);
71 $ret = system("export ACUXE_BIN_INSTALLATION_DIR=$dir ; export IM_CFGFILE_PATH=$dir ; export ACUXE_LOCK_FILES_DIR=$dir/locks ; $tool -c $bkpdir/cpqacuxe.dat");
[1911]72 print SCRIPT "export ACUXE_BIN_INSTALLATION_DIR=$dir ; export IM_CFGFILE_PATH=$dir ; export ACUXE_LOCK_FILES_DIR=$dir/locks ; $tool -i $locbkpdir/cpqacuxe.dat\n";
[1761]73 print TOOLS "$tooldir/bld\n";
74 }
[2703]75 if ($tool =~ /\/hpacucli$/) {
[2696]76 my $dir=basename($tool);
77 $ret = system("export ACUXE_BIN_INSTALLATION_DIR=$dir ; export IM_CFGFILE_PATH=$dir ; export ACUXE_LOCK_FILES_DIR=$dir/locks ; $tool -c $bkpdir/hpacucli.dat");
78 print SCRIPT "export ACUXE_BIN_INSTALLATION_DIR=$dir ; export IM_CFGFILE_PATH=$dir ; export ACUXE_LOCK_FILES_DIR=$dir/locks ; $tool -i $locbkpdir/hpacucli.dat\n";
79 print TOOLS "$tooldir/bld\n";
80 }
[1761]81 if ($tool =~ /\/hponcfg$/) {
82 $ret = system("$tool -w $bkpdir/hponcfg.dat");
[1911]83 print SCRIPT "$tool -r $locbkpdir/hponcfg.dat\n";
[1761]84 }
[1764]85 if ($tool =~ /\.scexe$/) {
[1880]86 print "Found $tool, that firmware will be applied at restore time on your HP Proliant\n";
[1911]87 print SCRIPT "./$tool\n";
[1764]88 }
[1761]89 if ($ret != 0) {
90 print "$tool returned an error. Hardware support may not be complete\n";
91 }
92 }
93 close(PROLIANT);
94 close(TOOLS);
95 close(SCRIPT);
96} else {
[2462]97 print "\nWARNING: No Hardware support for $productname.\nNot a big issue, just less features and risks ;-)\n";
[1784]98 print "You may ask your manufacturer to contribute to the mindi project\n";
[1761]99}
100rmdir $bkpdir if (-d $bkpdir) ;
Note: See TracBrowser for help on using the repository browser.