source: MondoRescue/branches/stable/mondo/distributions/conf/mondo.conf.dist@ 1529

Last change on this file since 1529 was 1529, checked in by Bruno Cornec, 17 years ago
  • ChangeLogs updated for upcoming 2.2.4
  • Attempt to fix #177 by removing first headers and repodata directory before regenerating them.
  • Fix a problem in directory link handling in mindi (seen on gentoo 64) with the precious help of Francesco Talamona ti.liame_at_email.it
  • Gentoo ebuild are now unmasked on my side
  • usb-storage instead of usb_storage as a module name for Virtual CD support seems better
  • Document support for Proliant Virtual Media with mindi
  • Mandriva packages go first to contrib/testing not backport
  • Size of DVD is 4482 (or more surely 4480 to avoid problems). Fixed everywhere.
  • Fix a bug in Mandriva official package creation

(merge -r1519:1528 $SVN_M/branches/2.2.4)

File size: 3.3 KB
Line 
1# Mondorescue configuration file
2#
3# $Id$
4#
5# We tried to give sensible defaults in this file.
6# It will alwys be loaded by mondoarchive before your own configuration files.
7# DO NOT CHANGE THAT FILE IN ANYWAY AS ITS MD5 SUM IS USED AS A CHECK !!
8# Anyway changing some values in your own configuration file may render
9# mondoarchive instable or cause failures. Use with care.
10
11#
12# ISO image CLI command to use
13# do not specify the -o, -c or the -b options, nor the directory to backup
14# as they will be generated by mondoarchive
15#
16mondo_iso_creation_cmd="/usr/bin/mkisofs"
17#mondo_iso_creation_cmd="/usr/bin/growisofs"
18
19#
20# ISO image common creation options (for mkisofs and growisofs)
21# do not specify the -o, -c or the -b options, nor the directory to backup
22#
23mondo_iso_creation_options="-J -r -p MondoRescue -publisher http://www.mondorescue.org -A MondoRescue -V _CD#_"
24#mondo_iso_creation_options="-use-the-force-luke -v -J -r -p MondoRescue -publisher www.mondorescue.org -A MondoRescue -V _CD#_"
25
26#
27# ISO Burning CLI command to use
28#
29mondo_iso_burning_cmd="/usr/bin/cdrecord"
30
31#
32# ISO Burning CLI command options
33mondo_iso_burning_options="-eject dev=_DEVICE_ speed=_SPEED_ fs=24m driveropts=burnfree"
34
35#
36# ISO Burning Speed
37#
38mondo_iso_burning_speed=1
39
40#
41# Default size of media
42#
43# Use 4380 for DVDs, 650 or 700 for CDs
44#
45mondo_media_size=4480
46
47#
48# Default device of media
49#
50# Use /dev/hdc, /dev/sr0, /dev/st0, ATAPI:0,0,0, ...
51#
52mondo_media_device="/dev/hdc"
53
54#
55# Is the CD tray manual ? (yes|no)
56#
57mondo_manual_tray=no
58
59#
60# Default log level
61#
62mondo_log_level=4
63
64#
65# default prefix for ISO names
66#
67mondo_prefix="mondorescue"
68
69#
70# External tape blocksize
71#
72mondo_external_tape_blocksize=131072
73
74#
75# Internal tape blocksize
76#
77mondo_internal_tape_blocksize=8192
78
79#
80# Size in MB of the slices for biggiefiles
81#
82mondo_slice_size=4096
83
84#
85# deplist file used (either fill path or relative to
86# mondo's configuration dir
87#
88mondo_deplist_file="deplist.txt"
89
90#
91# Write boot floppies (yes|no) ?
92#
93mondo_write_boot_floppy=no
94
95#
96# Create mindi CD (yes|no) ?
97#
98mondo_create_mindi_cd=no
99
100#
101# Kernel to use (NATIVE|FAILSAFE|PATH TO THE KERNEL)
102#
103mondo_kernel="NATIVE"
104#mondorescue_kernel="/boot/vmlinuz.special"
105
106#
107# Additional modules to support
108# (white space separated list of modules)
109#
110mondo_additional_modules=""
111
112#
113# Boot loader to use
114# (GRUB|ELILO|LILO|RAW|NATIVE)
115#
116mondo_boot_loader="NATIVE"
117
118#
119# Differential backup or full (yes|no)
120#
121mondo_differential=no
122
123#
124# Default compression tool
125#
126mondo_compression_tool="/bin/gzip"
127
128#
129# Default compression level
130#
131mondo_compression_level=6
132
133#
134# Paths to exclude from backup
135# (white space separated list of paths)
136#
137mondo_exclude_paths=""
138
139#
140# Paths to include onto the backup
141# (white space separated list of paths)
142#
143mondo_include_paths=""
144
145#
146# Which mode should be activated by default (cli|newt|x11|web)
147# TBC
148#
149mondo_ui_mode="newt"
150
151#
152# Activate automatic restore (Use with caution) (yes|no)
153# (look at -H option in man page)
154#
155mondo_automatic_restore=no
156
157#
158# Scratch directory
159#
160mondo_scratch_dir="/var/spool/mondo"
161#scratch_dir="/var/cache/mondo/scratch"
162
163#
164# Temporary directory main path
165# A subdirectory will be created below to host mondo's temp files
166#
167mondo_tmp_dir="/tmp"
168#tmp_dir="/var/cache/mondo/tmp"
169
170#
171# Images creation dir
172#
173mondo_images_dir="/var/cache/mondo"
Note: See TracBrowser for help on using the repository browser.