source: MondoRescue/branches/3.3/MondoRescue/etc/mondorescue.conf@ 3648

Last change on this file since 3648 was 3648, checked in by Bruno Cornec, 7 years ago
  • Adds mr-mksio script to generate the correct command to build an ISO image
File size: 4.0 KB
Line 
1# $Id$
2#
3# =pod
4#
5# =head1 NAME
6#
7# MondoRescue configuration file
8#
9# =head1 DESCRIPTION
10#
11# The mondorescue.conf contains the various parameters that can be adapted for MondoRescue usage
12#
13# =head1 SYNOPSIS
14#
15# We tried to give sensible defaults in this file (mondorescue.conf.dist).
16# It will always be loaded by the tools before your own configuration files (mondorescue.conf).
17#
18# DO NOT CHANGE THAT FILE IN ANYWAY AS ITS MD5 SUM IS USED AS A CHECK !!
19# Anyway changing some values in your own configuration file may render
20# MondoRescue tools instable or cause failures. Use with care.
21#
22# =head1 CONFIGURATION PARAMETERS
23#
24
25# =over 4
26
27# =item B<mr_tmp_dir default>
28#
29# Temporary directory
30#
31# Under it a temporary directory will be created to host all
32# temporary files for MondoRescue tools. That subdirectory is erased at the end of execution
33#
34# Key: OS (could be from the most generic up to the most specific from ostype, osfamily, os, os-ver, os-ver-arch). The family name is generaly used here.
35# Value: Full path of the temporary directory
36# Example:
37mr_tmp_dir default = /tmp
38
39# =item B<mr_cmdline>
40#
41# Location of the file containing the boot command line for the OS
42#
43# Key: OS (could be from the most generic up to the most specific from ostype, osfamily, os, os-ver, os-ver-arch). The family name is generaly used here.
44# Value: comma separated list of URLs that point to repository files, or packages to install. The values may not include substitutions.
45# Example:
46mr_cmdline linux = /proc/cmdline
47mr_cmdline bsd = /tmp/cmdline
48# TBC
49mr_cmdline solaris = /proc/cmdline
50#
51
52# =item B<TO BE DOCUMENTED LATER>
53#
54mr_etc_fstab default = /etc/fstab
55mr_etc_raidtab linux = /etc/raidtab
56mr_proc_partitions linux = /proc/partitions
57mr_proc_filesystems linux = /proc/filesystems
58mr_proc_modules linux = /proc/modules
59mr_proc_cpuinfo linux = /proc/cpuinfo
60mr_proc_devices linux = /proc/devices
61mr_proc_meminfo linux = /proc/meminfo
62mr_proc_mounts linux = /proc/mounts
63mr_proc_misc linux = /proc/misc
64mr_proc_swaps linux = /proc/swaps
65mr_proc_xen linux = /proc/sys/xen
66
67# Location of some commands
68#
69mr_cmd_mount linux = /usr/bin/mount
70mr_opt_mount linux = -l
71mr_cmd_df linux = /bin/df
72mr_opt_df linux = -TP
73mr_cmd_dmidecode linux = /usr/sbin/dmidecode
74mr_cmd_lshw linux = /usr/sbin/lshw
75#
76# Management of ISO images and their burning on media
77#
78# ISO mode can be mkisofs or xorriso or best (xorriso used first if found, then mkisofs)
79mr_iso_mode default = best
80# parameters can use the mr_cmd_mode, mr_opt_gen_mode, mr_opt_mindi_mode, mr_opt_mr_mode options to configure it
81mr_cmd_mkisofs default = /usr/bin/genisoimage
82mr_cmd_mkisofs linux = /usr/bin/genisoimage
83mr_cmd_mkisofs mageia = /usr/bin/genisoimage
84mr_cmd_xorriso linux = /usr/bin/xorriso
85#
86mr_opt_gen_xorriso linux = -joliet on -rockridge on -publisher http://www.mondorescue.org -volset-size 1 -volset-seqno MRSEQNO
87mr_opt_gen_mkisofs linux = -J -r -v -publisher http://www.mondorescue.org -volset-size 1 -volset-seqno MRSEQNO
88#
89mr_opt_mindi_xorriso linux = -application_id Mindi -preparer_id Mindi -volid MINDI-MEDIA -volset_id MINDI-MEDIA
90mr_opt_mindi_mkisofs linux = -A Mindi -p Mindi -V MINDI-MEDIA -volset MINDI-MEDIA
91#
92mr_opt_mr_xorriso linux = -application_id MondoRescue -preparer_id MondoRescue -volid MONDORESCUE-MEDIA -volset_id MONDORESCUE-MEDIA
93mr_opt_mr_mkisofs linux = -A MondoRescue -p MondoRescue -V MONDORESCUE-MEDIA -volset MONDORESCUE-MEDIA
94#
95# Interface to burner
96#
97# Burn mode can be cdrecord or xorriso or best (xorriso used first if found, then cdrecord)
98mr_burn_mode default = cdrecord
99#mr_cmd_cdrecord default = /usr/bin/cdrecord
100mr_cmd_cdrecord default = /usr/bin/wodim
101mr_opt_cdrecord default = -v
102
103#
104# LVM commands and conf files
105# Is it LSB ?
106#
107mr_cmd_lvmdiskscan default = /usr/sbin/lvmdiskscan
108mr_proc_lvm default = /proc/lvm/global
109mr_cmd_lvm default = /usr/sbin/lvm
110mr_path_lvm default = /usr/sbin/
111
112# =back
113
114# =head1 COPYRIGHT
115
116# (c) B. Cornec 2007-today
117#
118# Provided under the Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0) Creative Common License
119
120# =cut
Note: See TracBrowser for help on using the repository browser.