source: MondoRescue/branches/stable/mondo/distributions/conf/mondo.conf@ 1228

Last change on this file since 1228 was 1228, checked in by Bruno Cornec, 17 years ago

Improved configuration file for mondo-web module

File size: 3.1 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=%s speed=%d 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=4380
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
86#
87mondo_deplist_file="/etc/mondo/deplist.txt"
88
89#
90# Write boot floppies (yes|no) ?
91#
92mondo_write_boot_floppy=no
93
94#
95# Create mindi CD (yes|no) ?
96#
97mondo_create_mindi_cd=no
98
99#
100# Kernel to use (NATIVE|FAILSAFE|PATH TO THE KERNEL)
101#
102mondo_kernel="NATIVE"
103#mondorescue_kernel="/boot/vmlinuz.special"
104
105#
106# Additional modules to support
107# (white space separated list of modules)
108#
109mondo_additional_modules=""
110
111#
112# Boot loader to use
113# (GRUB|ELILO|LILO|RAW|NATIVE)
114#
115mondo_boot_loader=NATIVE
116
117#
118# Differential backup or full (yes|no)
119#
120mondo_differential=no
121
122#
123# Default compression tool
124#
125mondo_compression_tool="/bin/gzip"
126
127#
128# Default compression level
129#
130mondo_compression_level=5
131
132#
133# Paths to exclude from backup
134# (white space separated list of paths)
135#
136mondo_exclude_files=""
137
138#
139# Paths to include onto the backup
140# (white space separated list of paths)
141#
142mondo_include_files=""
143
144#
145# Activate semi-graphical mode by default (yes|no)
146#
147mondo_text_mode=no
148
149#
150# Activate automatic restore (Use with caution) (yes|no)
151# (look at -H option in man page)
152#
153mondo_automatic_restore=no
154
155#
156# Scratch directory
157#
158mondo_scratch_dir=""
159#scratch_dir="/tmp/mondo/scratch"
160
161#
162# Temporary directory
163#
164mondo_tmp_dir=""
165#tmp_dir="/tmp/mondo/tmp"
166
167#
168# Images creation dir
169#
170mondo_images_dir="/var/cache/mondo"
Note: See TracBrowser for help on using the repository browser.