Changeset 3684 in MondoRescue for branches/3.3/mindi/mindi-hpsa


Ignore:
Timestamp:
Aug 30, 2017, 7:24:16 PM (7 years ago)
Author:
Bruno Cornec
Message:
  • Skip a potential Warning when calling parted (Warning: The disk CHS geometry (258,255,63) reported by the operating system does not match the geometry stored on the disk label (1012,128,32).)
  • Improve some error msgs for coherency
  • Improve ansible delivery for perl Hokks to add svn hook support
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.3/mindi/mindi-hpsa

    r3530 r3684  
    1717my $productname = undef;
    1818
    19 die "You need dmidecode for Hardware support\n" if (! -x "/usr/sbin/dmidecode");
     19die "ERROR: You need dmidecode for Hardware support\n" if (! -x "/usr/sbin/dmidecode");
    2020
    2121mkdir $bkpdir,0755 if (! -d $bkpdir) ;
    22 open(SYSTEM,"/usr/sbin/dmidecode -s 'system-product-name' 2> /dev/null |") || die "You need /usr/sbin/dmidecode for mindi hardware support";
     22open(SYSTEM,"/usr/sbin/dmidecode -s 'system-product-name' 2> /dev/null |") || die "ERROR: You need /usr/sbin/dmidecode for mindi hardware support";
    2323while (<SYSTEM>) {
    2424    next if (/^#/);
     
    3535    print "You can install SDR packages to benefit from mindi's enhanced ProLiant support\n";
    3636    print "Get them from http://downloads.linux.hpe.com/SDR/\n";
    37     open(PROLIANT,"$confdir/deplist.d/ProLiant.conf") || die "Unable to open $confdir/deplist.d/ProLiant.conf";
     37    open(PROLIANT,"$confdir/deplist.d/ProLiant.conf") || die "ERROR: Unable to open $confdir/deplist.d/ProLiant.conf";
    3838    # generate a list of what need to be put on the backup media
    39     open(TOOLS,"> $bkpdir/../tools.files") || die "Unable to open $bkpdir/../tools.files";
     39    open(TOOLS,"> $bkpdir/../tools.files") || die "ERROR: Unable to open $bkpdir/../tools.files";
    4040    # generate a script that will be launched at rstore time to perform the HW setup
    41     open(SCRIPT,"> $bkpdir/../mindi-rsthw") || die "Unable to open $bkpdir/../mindi-rsthw";
     41    open(SCRIPT,"> $bkpdir/../mindi-rsthw") || die "ERROR: Unable to open $bkpdir/../mindi-rsthw";
    4242    print SCRIPT  << 'EOF';
    4343#!/bin/bash
Note: See TracChangeset for help on using the changeset viewer.