Last change
on this file since 2149 was
2149,
checked in by Bruno Cornec, 12 years ago
|
Begining f devl branch coding nd preliminary organisation
|
File size:
1.1 KB
|
Line | |
---|
1 | #!/usr/bin/perl -w |
---|
2 | # |
---|
3 | # Base subroutines brought by the MondoRescue project |
---|
4 | # |
---|
5 | # $Id$ |
---|
6 | # |
---|
7 | # Copyright B. Cornec 2008 |
---|
8 | # Provided under the GPL v2 |
---|
9 | |
---|
10 | package MondoRescue::Base; |
---|
11 | |
---|
12 | use strict 'vars'; |
---|
13 | use Data::Dumper; |
---|
14 | use English; |
---|
15 | use File::Basename; |
---|
16 | use File::Copy; |
---|
17 | use POSIX qw(strftime); |
---|
18 | use lib qw (lib); |
---|
19 | use ProjectBuilder::Base; |
---|
20 | use ProjectBuilder::Conf; |
---|
21 | |
---|
22 | # Inherit from the "Exporter" module which handles exporting functions. |
---|
23 | |
---|
24 | use Exporter; |
---|
25 | |
---|
26 | # Export, by default, all the functions into the namespace of |
---|
27 | # any code which uses this module. |
---|
28 | |
---|
29 | our @ISA = qw(Exporter); |
---|
30 | our @EXPORT = qw(mr_lvm_check); |
---|
31 | |
---|
32 | =pod |
---|
33 | |
---|
34 | =head1 NAME |
---|
35 | |
---|
36 | MondoRescue::Base, part of the mondorescue.org |
---|
37 | |
---|
38 | =head1 DESCRIPTION |
---|
39 | |
---|
40 | This modules provides low level and generic functions for the Mondorescue project |
---|
41 | |
---|
42 | =head1 USAGE |
---|
43 | |
---|
44 | =over 4 |
---|
45 | |
---|
46 | =item B<mr_exit> |
---|
47 | |
---|
48 | This function closes opened files, clean up the environment and exits MondoRescue |
---|
49 | It takes 2 parameters, the exit code, and the message to print if needed |
---|
50 | |
---|
51 | =cut |
---|
52 | |
---|
53 | sub mr_exit { |
---|
54 | |
---|
55 | my $code = shift; |
---|
56 | my $msg = shift || ""; |
---|
57 | |
---|
58 | if (defined $msg) { |
---|
59 | pb_log($pbdebug,$msg); |
---|
60 | } |
---|
61 | die "ERROR returned\n" if ($code < 0); |
---|
62 | exit($code); |
---|
63 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.