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

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

Use the configuration files in mondo (begining). That revision doesn't even compile.

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