source: MondoRescue/branches/3.2/MondoRescue/bin/mr-check-lvm@ 3226

Last change on this file since 3226 was 3226, checked in by Bruno Cornec, 10 years ago
  • Move elementary perl scripts from mindi to MondoRescue and adapt build Makefile
  • Property svn:executable set to *
File size: 3.1 KB
Line 
1#!/usr/bin/perl -w
2#
3# Analyze the LVM configuration
4# and store the configuration for restore time
5#
6# $Id$
7#
8# Copyright B. Cornec 2008-2014
9# Provided under the GPL v2
10
11# Syntax: see below
12
13use strict 'vars';
14use Getopt::Long qw(:config auto_abbrev no_ignore_case);
15use Data::Dumper;
16use English;
17use lib qw (lib);
18use ProjectBuilder::Base;
19use ProjectBuilder::Distribution;
20use MondoRescue::Base;
21use MondoRescue::LVM;
22
23=pod
24
25=head1 NAME
26
27mr-check-lvm - A MondoRescue Tool to check the LVM basic info
28
29=head1 DESCRIPTION
30
31B<mr-check-lvm> prints all the information related to the LVM configuration that may be used by a restoration process
32
33=head1 SYNOPSIS
34
35mr-check-lvm [-v]|[-q]|[-h]|[--man][-o outputfile][-l logfile]
36
37=head1 OPTIONS
38
39=over 4
40
41=item B<-v|--verbose>
42
43Be more verbose
44
45=item B<-q|--quiet>
46
47Do not print any output.
48
49=item B<-h|--help>
50
51Print a brief help message and exits.
52
53=item B<--man>
54
55Prints the manual page and exits.
56
57=item B<-o|--output>
58
59Name of the file to generate. Use stdout by default
60
61The output format is:
62LVM:lvm-version
63PV:pv-information as done with pvdisplay -c
64VG:vg-information as done with vgdisplay -c
65LV:lv-information as done with lvdisplay -c
66
67=back
68
69=head1 WEB SITES
70
71The main Web site of the project is available at L<http://www.mondorescue.org/>. Bug reports should be filled using the trac instance of the project at L<http://trac.mondorescue.org/>.
72
73=head1 USER MAILING LIST
74
75The mailing list of the project is available at L<mailto:mondo@lists.sf.net>
76
77=head1 AUTHORS
78
79The Mondorescue.org team L<http://www.mondorescue.org/> lead by Bruno Cornec L<mailto:bruno@mondorescue.org>.
80
81=head1 COPYRIGHT
82
83Analyze-LVM is distributed under the GPL v2.0 license
84described in the file C<COPYING> included with the distribution.
85
86=cut
87
88
89# ---------------------------------------------------------------------------
90# Globals
91my %opts; # CLI Options
92
93# Initialize the syntax string
94
95pb_syntax_init("mr-check-lvm Version PBVER-rPBREV\n");
96
97# Handle options
98#
99GetOptions("help|?|h" => \$opts{'h'},
100 "man" => \$opts{'man'},
101 "verbose|v+" => \$opts{'v'},
102 "quiet|q" => \$opts{'q'},
103 "output|o=s" => \$opts{'o'},
104 "log-files|l=s" => \$opts{'l'},
105 "version|V" => \$opts{'V'},
106) || pb_syntax(-1,0);
107
108# easy options
109if (defined $opts{'h'}) {
110 pb_syntax(0,1);
111}
112if (defined $opts{'man'}) {
113 pb_syntax(0,2);
114}
115if (defined $opts{'v'}) {
116 $pbdebug = $opts{'v'};
117}
118if (defined $opts{'q'}) {
119 $pbdebug=-1;
120}
121
122#
123# Global variables
124#
125my $MRMINI_VERSION = "PBVER-rPBREV";
126my $MRMINI_PREFIX = "PBPREFIX";
127my $MRMINI_CONF = "PBCONF";
128my $MRMINI_BIN = "$MRMINI_PREFIX/bin";
129my $MRMINI_LIB = "$MRMINI_PREFIX/lib";
130
131
132# Init
133mr_init();
134
135# -------------------------------- main -----------------------------------
136# Where to send the output
137my $OUTPUT = \*STDOUT;
138if (defined $opts{'o'}) {
139 open(OUTPUT, "> $opts{'o'}") || mr_exit(-1, "Unable to write to $opts{'o'}");
140 $OUTPUT = \*OUTPUT;
141}
142
143my ($lvmver,$lvmcmd) = mr_lvm_check($OUTPUT);
144if (defined $opts{'o'}) {
145 close($OUTPUT);
146}
147
148if ($lvmver == 0) {
149 pb_log(0,"No LVM handling\n")
150} else {
151 pb_log(0,"LVM v$lvmver command is $lvmcmd\n")
152}
153mr_exit(0,undef);
Note: See TracBrowser for help on using the repository browser.