source: MondoRescue/branches/stable/mondo/distributions/rpm/mondorescue.conf@ 388

Last change on this file since 388 was 388, checked in by bcornec, 18 years ago

RPMs are now made with a .spec containing m4 macros expanded with tools/mkrpm
this allows for a simpler spec file at the end,
which should be suited for at least Mandriva official packages.
Added a new mkspec tool which does the expansion
This way of dealing with distributions will be used is some other areas in the future

File size: 2.6 KB
RevLine 
[344]1# Mondorescue configuration file
2#
3# $Id$
4#
5# We tried to give sensible defaults in this file.
6# Changing some values may render mondorescue instable
[388]7# or cause failures. Use with care.
[344]8
9
10#
11# ISO image CLI command to use
12# do not specify the -o, -c or the -b options, nor the directory to backup
13# as they will be generated by mondoarchive
14#
15iso_creation_cmd="/usr/bin/mkisofs"
16#iso_creation_cmd="/usr/bin/growisofs"
17
18#
19# ISO image common creation options (for mkisofs and growisofs)
20# do not specify the -o, -c or the -b options, nor the directory to backup
21#
22iso_creation_options="-J -r -p MondoRescue -publisher www.mondorescue.org -A Mondo_Rescue_GPL_Version -V _CD#_"
23#iso_creation_options="-use-the-force-luke -v -J -r -p MondoRescue -publisher www.mondorescue.org -A Mondo_Rescue_GPL_Version -V _CD#_"
24
25#
26# ISO Burning CLI command to use
27#
28iso_burning_cmd="/usr/bin/cdrecord"
29
30#
31# ISO Burning CLI command options
32iso_burning_options="-eject dev=%s speed=%d fs=24m"
33
34#
35# ISO Burning Speed
36#
37iso_burning_speed=1
38
39#
40# Default size of media
41#
42# Use 4380 for DVDs, 650 or 700 for CDs
43#
44media_size=4380
45
46#
47# Default device of media
48#
49# Use /dev/hdc, /dev/sr0, /dev/st0, ATAPI:0,0,0, ...
50#
51media_device="/dev/hdc"
52
53#
54# Is the CD tray manual ? (yes|no)
55#
56manual_tray=no
57
58#
59# Default log level
60#
61log_level=4
62
63#
64# prefix for ISO names
65#
66prefix=mondorescue
67
68#
69# Size of the boot image for ia64
70#
71ia64_boot_size=8192
72
73#
74# External tape blocksize
75#
76external_tape_blocksize=131072
77
78#
79# Internal tape blocksize
80#
81internal_tape_blocksize=8192
82
83#
84# Size of the slices for biggiefiles
85#
86slice_size=4096
87
88#
89# deplist file used
90#
91deplist_file="/etc/mondorescue/deplist.txt"
92
93#
94# Write boot floppies (yes|no) ?
95#
96write_boot_floppy=no
97
98#
99# Write mindi CD (yes|no) ?
100#
101write_mindi_cd=no
102
103#
104# Kernel to use (NATIVE|FAILSAFE|PATH TO THE KERNEL)
105#
106mondorescue_kernel="NATIVE"
107#mondorescue_kernel="/boot/vmlinuz.special"
108
109#
110# Additinal modules to support
111# (white space separated list of modules)
112#
113additional_modules=""
114
115#
116# Boot loader to use
117# (GRUB|ELILO|LILO|RAW|NATIVE)
118#
119boot_loader=NATIVE
120
121#
122# Differential backup or full (yes|no)
123#
124differential=no
125
126#
127# Default compression tool
128#
129compression_tool="/usr/bin/bzip2"
130
131#
132# Default compression level
133#
134compression_level=3
135
136#
137# Paths to exclude from backup
138# (white space separated list of paths)
139#
140exclude_files=""
141
142#
143# Activate semi-graphical mode by default (yes|no)
144#
145text_mode=no
146
147#
148# Activate automatic restore (Use with caution) (yes|no)
149#
150automatic_restore=no
151
152#
153# Scratch directory
154#
155scratch_dir=""
156#scratch_dir="/tmp/mondo/scratch"
157
158#
159# Temporary directory
160#
161tmp_dir=""
162#tmp_dir="/tmp/mondo/tmp"
163
164#
165# Images creation dir
166#
[388]167images_dir="/root/images/mindi"
Note: See TracBrowser for help on using the repository browser.