Subversion Repositories configs

Rev

Rev 197 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
192 - 1
# Anaconda configuration file.
2
# Version: unstable
3
 
4
 
5
[Anaconda]
6
# Run Anaconda in the debugging mode.
7
debug = False
8
 
9
# Enable Anaconda addons.
10
addons_enabled = True
11
 
12
# List of enabled Anaconda DBus modules.
13
kickstart_modules =
14
     org.fedoraproject.Anaconda.Modules.Timezone
15
     org.fedoraproject.Anaconda.Modules.Network
16
     org.fedoraproject.Anaconda.Modules.Localization
17
     org.fedoraproject.Anaconda.Modules.Security
18
     org.fedoraproject.Anaconda.Modules.Users
19
     org.fedoraproject.Anaconda.Modules.Payloads
20
     org.fedoraproject.Anaconda.Modules.Storage
21
     org.fedoraproject.Anaconda.Modules.Services
22
 
23
 
24
[Installation System]
25
# Type of the installation system.
26
# FIXME: This is a temporary solution.
27
type = UNKNOWN
28
 
29
# Should the installer show a warning about unsupported hardware?
30
can_detect_unsupported_hardware = False
31
 
32
# Should the installer show a warning about removed support for hardware?
33
can_detect_support_removed = False
34
 
35
# Should the installer show a warning about enabled SMT?
36
can_detect_enabled_smt = False
37
 
38
 
39
[Installation Target]
40
# Type of the installation target.
41
type = HARDWARE
42
 
43
# A path to the physical root of the target.
44
physical_root = /mnt/sysimage
45
 
46
# A path to the system root of the target.
47
system_root = /mnt/sysroot
48
 
200 - 49
# Should we install the network configuration?
50
can_configure_network = True
51
 
52
 
192 - 53
[Network]
54
# Network device to be activated on boot if none was configured so.
55
# Valid values:
56
#
57
#   NONE                   No device
58
#   DEFAULT_ROUTE_DEVICE   A default route device
59
#   FIRST_WIRED_WITH_LINK  The first wired device with link
60
#
61
default_on_boot = NONE
62
 
63
 
64
[Payload]
65
# Default package environment.
66
default_environment =
67
 
68
# List of ignored packages.
69
ignored_packages =
70
 
71
# Enable installation of latest updates.
72
enable_updates = True
73
 
74
# List of .treeinfo variant types to enable.
75
# Valid items:
76
#
77
#   addon
78
#   optional
79
#   variant
80
#
81
enabled_repositories_from_treeinfo = addon optional variant
82
 
83
# Enable installation from the closest mirror.
84
enable_closest_mirror = True
85
 
86
# Default installation source.
87
# Valid values:
88
#
89
#    CLOSEST_MIRROR  Use closest public repository mirror.
90
#    CDN             Use Content Delivery Network (CDN).
91
#
92
default_source = CLOSEST_MIRROR
93
 
94
# Check if payload supports the locales.
95
check_supported_locales = False
96
 
97
# Enable ssl verification for all HTTP connection
98
verify_ssl = True
99
 
100
 
101
[Security]
102
# Enable SELinux usage in the installed system.
103
# Valid values:
104
#
105
#  -1  The value is not set.
106
#   0  SELinux is disabled.
107
#   1  SELinux is enabled.
108
#
109
selinux = -1
110
 
111
 
112
[Bootloader]
113
# Type of the bootloader.
114
# Supported values:
115
#
116
#   DEFAULT   Choose the type by platform.
117
#   EXTLINUX  Use extlinux as the bootloader.
118
#
119
type = DEFAULT
120
 
121
# Name of the EFI directory.
122
efi_dir = default
123
 
124
# Hide the GRUB menu.
125
menu_auto_hide = False
126
 
127
# Are non-iBFT iSCSI disks allowed?
128
nonibft_iscsi_boot = False
129
 
130
# Arguments preserved from the installation system.
131
preserved_arguments =
132
     cio_ignore rd.znet rd_ZNET zfcp.allow_lun_scan
133
     speakup_synth apic noapic apm ide noht acpi video
134
     pci nodmraid nompath nomodeset noiswmd fips selinux
135
     biosdevname ipv6.disable net.ifnames net.ifnames.prefix
136
     nosmt
137
 
138
 
139
[Storage]
140
# Enable dmraid usage during the installation.
141
dmraid = True
142
 
143
# Enable iBFT usage during the installation.
144
ibft = True
145
 
146
# Do you prefer creation of GPT disk labels?
147
gpt = False
148
 
149
# Tell multipathd to use user friendly names when naming devices during the installation.
150
multipath_friendly_names = True
151
 
152
# Do you want to allow imperfect devices (for example, degraded mdraid array devices)?
153
allow_imperfect_devices = False
154
 
155
# Default file system type. Use whatever Blivet uses by default.
156
file_system_type =
157
 
158
# Default partitioning.
197 - 159
# Specify a mount point and its attributes on each line.
192 - 160
#
197 - 161
# Valid attributes:
192 - 162
#
197 - 163
#   size <SIZE>    The size of the mount point.
164
#   min <MIN_SIZE> The size will grow from MIN_SIZE to MAX_SIZE.
165
#   max <MAX_SIZE> The max size is unlimited by default.
166
#   free <SIZE>    The required available space.
167
#
168
default_partitioning =
169
    /     (min 1 GiB, max 70 GiB)
170
    /home (min 500 MiB, free 50 GiB)
171
    swap
192 - 172
 
173
# Default partitioning scheme.
174
# Valid values:
175
#
176
#    PLAIN      Create standard partitions.
177
#    BTRFS      Use the Btrfs scheme.
178
#    LVM        Use the LVM scheme.
179
#    LVM_THINP  Use LVM Thin Provisioning.
180
#
181
default_scheme = LVM
182
 
183
# Default version of LUKS.
184
# Valid values:
185
#
186
#   luks1  Use version 1 by default.
187
#   luks2  Use version 2 by default.
188
#
189
luks_version = luks2
190
 
191
 
192
[Storage Constraints]
193
 
194
# Minimal size of the total memory.
195
min_ram = 320 MiB
196
 
197
# Minimal size of the available memory for LUKS2.
198
luks2_min_ram = 128 MiB
199
 
200
# Should we recommend to specify a swap partition?
201
swap_is_recommended = True
202
 
203
# Recommended minimal sizes of partitions.
204
# Specify a mount point and a size on each line.
205
min_partition_sizes =
206
    /      250 MiB
207
    /usr   250 MiB
208
    /tmp   50  MiB
209
    /var   384 MiB
210
    /home  100 MiB
211
    /boot  200 MiB
212
 
213
# Required minimal sizes of partitions.
214
# Specify a mount point and a size on each line.
215
req_partition_sizes =
216
 
217
# Allowed device types of the / partition if any.
218
# Valid values:
219
#
220
#  LVM        Allow LVM.
221
#  MD         Allow RAID.
222
#  PARTITION  Allow standard partitions.
223
#  BTRFS      Allow Btrfs.
224
#  DISK       Allow disks.
225
#  LVM_THINP  Allow LVM Thin Provisioning.
226
#
227
root_device_types =
228
 
229
# Mount points that must be on a linux file system.
230
# Specify a list of mount points.
231
must_be_on_linuxfs = / /var /tmp /usr /home /usr/share /usr/lib
232
 
233
# Paths that must be directories on the / file system.
234
# Specify a list of paths.
235
must_be_on_root = /bin /dev /sbin /etc /lib /root /mnt lost+found /proc
236
 
237
# Paths that must NOT be directories on the / file system.
238
# Specify a list of paths.
239
must_not_be_on_root =
240
 
241
# Mount points that are recommended to be reformatted.
242
#
243
# It will be recommended to create a new file system on a mount point
244
# that has a whitelisted prefix, but doesn't have a blacklisted one.
245
# Specify lists of mount points.
246
reformat_whitelist = /boot /var /tmp /usr
247
reformat_blacklist = /home /usr/local /opt /var/www
248
 
249
 
250
[User Interface]
251
# The path to a custom stylesheet.
252
custom_stylesheet =
253
 
254
# The path to a directory with help files.
255
help_directory =
256
 
257
# Default help pages for TUI, GUI and Live OS.
258
default_help_pages =
259
 
260
# Is the partitioning with blivet-gui supported?
261
blivet_gui_supported = True
262
 
263
# A list of spokes to hide in UI.
264
# FIXME: Use other identification then names of the spokes.
265
hidden_spokes =
266
 
267
# Run GUI installer in a decorated window.
268
decorated_window = False
269
 
270
 
271
[License]
272
# A path to EULA (if any)
273
#
274
# If the given distribution has an EULA & feels the need to
275
# tell the user about it fill in this variable by a path
276
# pointing to a file with the EULA on the installed system.
277
#
278
# This is currently used just to show the path to the file to
279
# the user at the end of the installation.
280
eula =