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


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-bkphw

    r3530 r3684  
    6666my $productname = undef;
    6767
    68 die "No CACHE_DIR parameter" if ((not defined $ARGV[0]) || (! -d $ARGV[0]));
     68die "ERROR: No CACHE_DIR parameter" if ((not defined $ARGV[0]) || (! -d $ARGV[0]));
    6969my $locbkpdir = "/bkphw";
    7070my $bkpdir = "$ARGV[0]$locbkpdir";
    71 die "No CONF_DIR parameter" if ((not defined $ARGV[1]) || (! -d $ARGV[1]));
     71die "ERROR: No CONF_DIR parameter" if ((not defined $ARGV[1]) || (! -d $ARGV[1]));
    7272my $confdir = "$ARGV[1]";
    7373
    74 die "You need dmidecode for Hardware support\n" if (! -x "/usr/sbin/dmidecode");
     74die "ERROR: You need dmidecode for Hardware support\n" if (! -x "/usr/sbin/dmidecode");
    7575
    7676mkdir $bkpdir,0755 if (! -d $bkpdir) ;
    77 open(SYSTEM,"/usr/sbin/dmidecode -s 'system-product-name' 2> /dev/null |") || die "You need /usr/sbin/dmidecode for mindi hardware support";
     77open(SYSTEM,"/usr/sbin/dmidecode -s 'system-product-name' 2> /dev/null |") || die "ERROR: You need /usr/sbin/dmidecode for mindi hardware support";
    7878while (<SYSTEM>) {
    7979    next if (/^#/);
     
    9090    print "INFO: You can install SDR packages to benefit from mindi's enhanced ProLiant support\n";
    9191    print "INFO: Get them from http://downloads.linux.hpe.com/SDR/\n";
    92     open(PROLIANT,"$confdir/deplist.d/ProLiant.conf") || die "Unable to open $confdir/deplist.d/ProLiant.conf";
     92    open(PROLIANT,"$confdir/deplist.d/ProLiant.conf") || die "ERROR: Unable to open $confdir/deplist.d/ProLiant.conf";
    9393    # generate a list of what need to be put on the backup media
    94     open(TOOLS,"> $bkpdir/../tools.files") || die "Unable to open $bkpdir/../tools.files";
     94    open(TOOLS,"> $bkpdir/../tools.files") || die "ERROR: Unable to open $bkpdir/../tools.files";
    9595    # generate a script that will be launched at rstore time to perform the HW setup
    96     open(SCRIPT,"> $bkpdir/../mindi-rsthw") || die "Unable to open $bkpdir/../mindi-rsthw";
     96    open(SCRIPT,"> $bkpdir/../mindi-rsthw") || die "ERROR: Unable to open $bkpdir/../mindi-rsthw";
    9797    print SCRIPT  << 'EOF';
    9898#!/bin/bash
Note: See TracChangeset for help on using the changeset viewer.