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

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

Migrate distribution information to pbconf

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 always 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 Burning CLI command to use
13#
14mondo_iso_burning_cmd="/usr/bin/cdrecord"
15#mondo_iso_burning_cmd="/usr/bin/growisofs"
16#
17
18#
19# If necessary (different from mondo_media_device),
20# precise the string used as a device by the previous command
21#mondo_iso_burning_dev="0,0,0"
22
23#
24# ISO Burning CLI command options
25mondo_iso_burning_opt="-eject fs=24m driveropts=burnfree"
26#mondo_iso_burning_opt="-J -r -v -p MondoRescue -publisher http://www.mondorescue.org -A MondoRescue -o _ISO_ -V _CD#_ -boot-info-table -no-emul-boot -boot-load-size 4"
27
28#
29# ISO Burning Speed
30#
31mondo_iso_burning_speed=1
32
33#
34# Erase CLI command to use fir RW media
35#
36mondo_rw_erase_cmd="/usr/bin/cdrecord"
37
38#
39# Erase CLI command to use fir RW media
40#
41mondo_rw_erase_opt="blank=fast"
42
43#
44# Default size of media in MiB
45#
46# Use 4480 for DVDs, 650 or 700 for CDs
47#
48mondo_media_size=4480
49
50#
51# Default device of media
52#
53# Use /dev/hdc, /dev/sr0, /dev/st0, ...
54#
55mondo_media_device="/dev/hdc"
56
57#
58# Is the CD tray manual ? (yes|no)
59#
60mondo_manual_tray=no
61
62#
63# Default log level
64#
65mondo_log_level=4
66
67#
68# default prefix for ISO names
69#
70mondo_prefix="mondorescue"
71
72#
73# External tape blocksize
74#
75mondo_external_tape_blocksize=131072
76
77#
78# Internal tape blocksize
79#
80mondo_internal_tape_blocksize=32768
81
82#
83# Size in MB of the slices for biggiefiles
84#
85mondo_slice_size=4096
86
87#
88# deplist file used (either fill path or relative to
89# mondo's configuration dir
90#
91mondo_deplist_file="deplist.txt"
92
93#
94# Write boot floppies (yes|no) ?
95#
96mondo_write_boot_floppy=no
97
98#
99# Create mindi CD (yes|no) ?
100#
101mondo_create_mindi_cd=no
102
103#
104# Kernel to use (NATIVE|FAILSAFE|PATH TO THE KERNEL)
105#
106mondo_kernel="NATIVE"
107#mondorescue_kernel="/boot/vmlinuz.special"
108
109#
110# Additional modules to support
111# (white space separated list of modules)
112#
113mondo_additional_modules=""
114
115#
116# Boot loader to use
117# (GRUB|ELILO|LILO|RAW|NATIVE)
118#
119mondo_boot_loader="NATIVE"
120
121#
122# Differential backup or full (yes|no)
123#
124mondo_differential=no
125
126#
127# Default compression tool
128#
129mondo_compression_tool="/bin/gzip"
130
131#
132# Default compression level
133#
134mondo_compression_level=6
135
136#
137# Paths to exclude from backup
138# (white space separated list of paths)
139#
140mondo_exclude_paths=""
141
142#
143# Paths to include onto the backup
144# (white space separated list of paths)
145#
146mondo_include_paths=""
147
148#
149# Which mode should be activated by default (cli|newt|x11|web)
150# TBC
151#
152mondo_ui_mode="newt"
153
154#
155# Activate automatic restore (Use with caution) (yes|no)
156# (look at -H option in man page)
157#
158mondo_automatic_restore=no
159
160#
161# Scratch directory
162#
163mondo_scratch_dir="/var/spool/mondo"
164#scratch_dir="/var/cache/mondo/scratch"
165
166#
167# Temporary directory main path
168# A subdirectory will be created below to host mondo's temp files
169#
170mondo_tmp_dir="/tmp"
171#tmp_dir="/var/cache/mondo/tmp"
172
173#
174# Images creation dir
175#
176mondo_images_dir="/var/cache/mondo"
Note: See TracBrowser for help on using the repository browser.