-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathari.conf
203 lines (161 loc) · 3.55 KB
/
ari.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
##############################################################
# title : ari.conf
# description : Configuration file for archinstaller
# authors : Dennis Anfossi,
# Lukas B.
# contact : https://github.com/vitamins/archinstaller
# date : 10.05.2014
# version : 0.7.8.8
# license : GPLv2
##############################################################
# See README for more detailed descriptions.
# BOOTLOADER OPTIONS
# {{{
# UEFI (yes/no)
uefi=''
# example:
# uefi='no'
# bootloader
# UEFI: (grub/gummiboot)
# BIOS: (grub/syslinux)
bootloader=''
# example:
# bootloader='syslinux'
# }}}
# PARTITIONING OPTIONS
# {{{
# manual partitioning (yes/no) (default: no)
# If set to yes, the following partitioning options are ignored.
#manual_part='no'
# select drive to be formatted
dest_disk=''
# example:
# dest_disk='/dev/sda'
# create swap partition (yes/no)
swap=''
# create home partition (yes/no)
home=''
# encrypt home partition (yes/no)
encrypt_home=''
# partition sizes
# Set '0' for the last partition to fill the remaining space.
swap_size=''
root_size=''
home_size=''
# example:
# swap_size='500M'
# root_size='25G'
# home_size='0'
# filesystem for root and home partition
# possible values: (btrfs/ext2/ext3/ext4/f2fs/jfs/nilfs2/reiserfs/xfs)
fstype=''
# example:
# fstype='ext4'
# }}}
# BASE CONFIGURATION
# {{{
# mirror
# To use the mirrorlist from the install host, set mirror to 'keep'.
mirror=''
# example:
# mirror='http://mirrors.kernel.org/archlinux/'
# language
# See /etc/locale.gen
locale=''
# example:
# locale='en_US.UTF-8 UTF-8'
# keymap
# See # localectl list-keymaps
keymap=''
# example:
# keymap='us'
# font
font=''
# example:
# font='Lat2-Terminus16'
# timezone
# See # timedatectl list-timezones
timezone=''
# example:
# timezone='Europe/Berlin'
# hardware clock
# (utc/localtime)
hardware_clock=''
# example:
# hardware_clock='utc'
# mkinitcpio hooks
# Leave empty to skip.
#hooks=''
# example:
# hooks='base udev autodetect block filesystems'
# kernel modules
# Leave empty to skip.
#k_modules=()
# example:
# k_modules=( 'dm_mod' kvm coretemp )
# kernel commandline
# Only required for manual partitioning, ignored otherwise.
#cmdline=''
# example:
# cmdline='root=/dev/sda1 rw quiet'
# hostname
hostname=''
# example:
# hostname='myhostname'
# }}}
# network service
# To skip network configuration, set network to 'no'.
# possible values: (no/dhcpcd/ifplugd/netctl)
network=''
# example:
# network='dhcpcd'
# USERS AND PASSWORDS
# {{{
# set passwords for root and standard user (yes/no)
set_password=''
# root password
# Leave empty to enter the password during installation.
root_password=''
# example:
# root_password='cleartext'
# add user (yes/no)
add_user=''
# username
username=''
# example:
# username='myuser'
# user password
user_password=''
# }}}
# additional packages
packages=()
# example:
# packages=(zsh vim base-devel)
# XORG OPTIONS
# {{{
# xorg (yes/no)
xorg=''
# The next two options require xorg, you can ignore them otherwise.
# desktop environment
# possible values: (no/cinnamon/enlightenment/gnome/kde/lxde/mate/xfce4)
desktop_environment=''
# example:
# desktop_environment='xfce4'
# display manager
# possible values: (no/gdm/kdm/lxdm/xdm)
display_manager=''
# example:
# display_manager='lxdm'
# }}}
# SCRIPT BEHAVIOUR (optional)
# {{{
# confirm (yes/no) (default: yes)
# Ask for confirmation before overwriting anything.
#confirm='yes'
# edit_conf (yes/no) (default: yes)
# Edit crucial configuration files at runtime for review.
#edit_conf='yes'
# unmount (yes/no) (default: yes)
# Unmount partitions before exit.
#unmount='yes'
# }}}