-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathanswers.txt
44 lines (30 loc) · 836 Bytes
/
answers.txt
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
# Use US layout with US variant
KEYMAPOPTS="us us"
# Hostname
HOSTNAMEOPTS="-n alpine-vm"
# Network interface configuration
INTERFACESOPTS="auto lo
iface lo inet loopback
auto eth0
iface eth0 inet dhcp
"
# Timezone (Asia/Kolkata)
TIMEZONEOPTS="Asia/Kolkata"
# Proxy settings (None)
PROXYOPTS="none"
# NTP client (busybox)
NTPOPTS="busybox"
# APK Repositories (Main and Community)
APKREPOSOPTS="-c -1"
# SSH server setup (openssh)
SSHDOPTS="-c openssh"
# Allow root SSH login with password
SSHDALLOWROOT="yes"
# SSH Configuration Options: PermitRootLogin and PasswordAuthentication
SSHD_CONFIG_OPTS="PermitRootLogin yes PasswordAuthentication yes"
# No SSH key or URL for root
SSHDKEY="none"
# Skip user setup
USEROPTS="no"
# Disk configuration (Install Alpine on /dev/vda with sys mode)
DISKOPTS="-v -m sys -s 0 /dev/vda"