source: MondoRescue/devel/mrmini/sbin/mrmini@ 2659

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

r3911@wsip-70-165-196-181: bruno | 2010-06-22 03:34:20 +0200

  • First packaged version of a mrmin version begining to work (but doing nothing interesting yet ;-)
File size: 5.0 KB
Line 
1#!/usr/bin/perl -w
2#
3# mrmini main application
4# Mini-distribution maker for the MondoRescue project
5#
6# $Id$
7#
8# Copyright B. Cornec 2008-2010
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 File::Basename;
18use File::Copy;
19use File::stat;
20use Digest::MD5 qw(md5_hex);
21use lib qw (lib);
22use POSIX qw(strftime);
23use ProjectBuilder::Base;
24use ProjectBuilder::Conf;
25use ProjectBuilder::Distribution;
26use ProjectBuilder::Display;
27use MondoRescue::LVM;
28use MondoRescue::Base;
29use MondoRescue::DynConf;
30use MondoRescue::Mini::Base;
31
32=pod
33
34=head1 NAME
35
36mrmini - Tool to create a boot environment from a distribution
37
38=head1 DESCRIPTION
39
40B<mrmini> creates a bootable ISO/USB image using files from the system it runs on. B<mrmini> will try hard to reproduce the environment of its host system including loaded modules to ensure that the system can be booted properly from the created rescue media. B<mrmini> is used by monodarchive(8) to produce the required USB/ISO images but can also be used stand-alone.
41
42For stand-alone usage, B<mrmini> may be called without any parameters or switches. It will then interactively ask the user for all information required to create a set of boot/root media. Options on the command line or a configuration file can also be used to alter the way B<mrmini> is working
43
44The probably more frequent way of calling B<mrmini> is non-interactively from mondoarchive(8) using a dedicated configuration file.
45
46=head1 SYNOPSIS
47
48mrmini [-v]|[-q]|[-h]|[--man]
49
50=head1 OPTIONS
51
52=cut
53
54# Handle options
55#
56
57=pod
58=over 4
59=item B<-v|--verbose>
60
61Print a brief help message and exits.
62
63=item B<-q|--quiet>
64
65Do not print any output.
66
67=item B<-h|--help>
68
69Print a brief help message and exits.
70
71=item B<--man>
72
73Prints the manual page and exits.
74
75=item B<-i|--iso iso_image>
76
77Name of the ISO image you want to created.
78
79=item B<-u|--usb usb_device>
80
81Name of the USB device on which you want to created your image.
82
83=item B<-t|--tape tape_device>
84
85Name of the Tape device on which you want to created your image.
86
87=item B<-o|--obdr>
88
89Activate OBDR mode for tape (Bootable tape devices)
90
91=item B<-V|--version>
92
93Display mrmini version and exit
94
95=item B<-f|--force>
96
97Force usage of defaults parameters or values without asking questions
98
99=item B<-p|--printvars variable>
100
101Prints the value of the variable passed as parameter
102
103=cut
104
105# Global variables
106my %opts; # CLI Options
107
108GetOptions(
109 "verbose|v+" => \$opts{'v'},
110 "quiet|q" => \$opts{'q'},
111 "help|?|h" => \$opts{'h'},
112 "man" => \$opts{'man'},
113 "iso|i=s" => \$opts{'i'},
114 "usb|u=s" => \$opts{'u'},
115 "tape|t=s" => \$opts{'t'},
116 "obdr|o" => \$opts{'o'},
117 "version|V" => \$opts{'V'},
118 "force|f" => \$opts{'f'},
119 "printvar|p=s" => \$opts{'p'},
120 "log-files|l=s" => \$opts{'l'},
121) || pb_syntax(-1,0);
122
123=pod
124=back
125
126=head1 WEB SITES
127
128The 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/>.
129
130=head1 USER MAILING LIST
131
132The miling list of the project is available at L<mailto:mondo@lists.sf.net>
133
134=head1 CONFIGURATION FILES
135
136The system administrator may have a configuration file in F<$HOME/.mondorescue>. The values in this file may overwrite any other configuration file value.
137
138Here is an example of such a configuration file:
139
140 # mrcachedir points to the directory where the tool will store generated content
141 # If not defined, mrcachedir is under /var/cache/mrmini
142 mrcachedir mrmini = /var/cache/mrmini
143
144 Also look at man mrmini.conf
145
146=head1 AUTHORS
147
148The Mondorescue.org team L<http://www.mondorescue.org/> lead by Bruno Cornec L<mailto:bruno@mondorescue.org>.
149
150=head1 COPYRIGHT
151
152mrmini is distributed under the GPL v2.0 license
153described in the file C<COPYING> included with the distribution.
154
155=cut
156
157
158
159# ---------------------------------------------------------------------------
160
161# Initialize the syntax string
162
163#
164# Global variables
165#
166my $proj;
167($mr->{'confdir'},$proj) = mr_dynconf_init();
168my @date = pb_get_date();
169$mr->{'start_date'} = strftime("%Y-%m-%d %H:%M:%S", @date);
170
171$ENV{'PBPROJ'} = $proj;
172$ENV{'PBPKG'} = "mrmini";
173
174# Adds conf files in order
175pb_conf_add("$mr->{'confdir'}/mondorescue.conf.dist","$mr->{'confdir'}/mondorescue.conf");
176($mr->{'install_dir'},$mr->{'version'}) = mr_conf_get("mr_install_dir","mr_version");
177
178pb_syntax_init("$ENV{'PBPKG'} Version $mr->{'version'}\n");
179pb_display_init("text","");
180
181# easy options
182if (defined $opts{'h'}) {
183 pb_syntax(0,1);
184}
185if (defined $opts{'man'}) {
186 pb_syntax(0,2);
187}
188if (defined $opts{'p'}) {
189 pb_display("$ENV{$opts{'p'}}\n");
190 exit(0);
191}
192
193if (defined $opts{'v'}) {
194 $pbdebug = $opts{'v'};
195}
196
197my $force = 0;
198
199if (defined $opts{'f'}) {
200 $force=1;
201}
202if (defined $opts{'q'}) {
203 $pbdebug=-1;
204}
205my $iso;
206
207if (defined $opts{'i'}) {
208 $iso = $opts{'i'};
209}
210my $logfile = undef;
211if (defined $opts{'l'}) {
212 $logfile = $opts{'l'};
213}
214
215#
216# Temp dir
217#
218pb_temp_init();
219mr_mini_main($logfile);
220mr_exit(0);
Note: See TracBrowser for help on using the repository browser.