source: MondoRescue/devel/mr/lib/MondoRescue/Kernel.pm@ 2667

Last change on this file since 2667 was 2667, checked in by Bruno Cornec, 14 years ago

r3936@dhcp184-49-175-19: bruno | 2010-06-26 09:48:04 +0200

  • Inventory now in better shape. Needs useful and exhaustive content now.
File size: 1.5 KB
Line 
1#!/usr/bin/perl -w
2#
3# Subroutines related to Kernel brought by the MondoRescue project
4#
5# $Id$
6#
7# Copyright B. Cornec 2008-2010
8# Provided under the GPL v2
9
10package MondoRescue::Kernel;
11
12use strict 'vars';
13use Data::Dumper;
14use English;
15use lib qw (lib);
16use ProjectBuilder::Base;
17use ProjectBuilder::Conf;
18use MondoRescue::Base;
19
20# Inherit from the "Exporter" module which handles exporting functions.
21
22use Exporter;
23
24# Export, by default, all the functions into the namespace of
25# any code which uses this module.
26
27our @ISA = qw(Exporter);
28our @EXPORT = qw(mr_kernel_check);
29
30=pod
31
32=head1 NAME
33
34MondoRescue::Kernel, part of the mondorescue.org
35
36=head1 DESCRIPTION
37
38This modules provides low level functions for Kernel support in the Mondorescue project
39
40=head1 USAGE
41
42=over 4
43
44=item B<mr_kernel_check>
45
46This function checks the kernel and returns back its version
47
48=cut
49
50sub mr_kernel_get_version {
51
52}
53
54=back
55
56=head1 WEB SITES
57
58The 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/>.
59
60=head1 USER MAILING LIST
61
62The mailing list of the project is available at L<mailto:mondo@lists.sf.net>
63
64=head1 AUTHORS
65
66The Mondorescue.org team L<http://www.mondorescue.org/> lead by Bruno Cornec L<mailto:bruno@mondorescue.org>.
67
68=head1 COPYRIGHT
69
70This module is distributed under the GPL v2.0 license
71described in the file C<COPYING> included with the distribution.
72
73=cut
74
751;
76
Note: See TracBrowser for help on using the repository browser.