source: MondoRescue/branches/3.2/MondoRescue/etc/mondorescue.conf

Last change on this file was 3239, checked in by Bruno Cornec, 10 years ago
  • Fix build process for perl modules deps (creation of the perl-scripts file was incorrect with build dir in it, and overwritten)
  • Fix pod2man issue on mondorescue.conf by adding pod content in it which is then processed in the Makefile.PL
File size: 2.9 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# Pb of key here want both linux and mrmini or mondoarchive or ...
76mr_cmd_mkisofs linux = /usr/bin/mkisofs
77mr_opt_mkisofs linux = -J -r -v -p MondoRescue -publisher http://www.mondorescue.org -A MondoRescue
78
79#
80# Interface to burner
81#
82mr_cmd_burn default = /usr/bin/wodim
83#mr_cmd_burn default = /usr/bin/cdrecord
84mr_opt_burn default = -v
85
86#
87# LVM commands and conf files
88# Is it LSB ?
89#
90mr_cmd_lvmdiskscan default = /usr/sbin/lvmdiskscan
91mr_proc_lvm default = /proc/lvm/global
92mr_cmd_lvm default = /usr/sbin/lvm
93mr_path_lvm default = /usr/sbin/
94
95# =back
96
97# =head1 COPYRIGHT
98
99# (c) B. Cornec 2007-2014
100#
101# Provided under the Attribution-ShareAlike 3.0 Unported (CC BY-SA 3.0) Creative Common License
102
103# =cut
Note: See TracBrowser for help on using the repository browser.