Created
August 10, 2020 19:37
-
-
Save jnovack/e94425d92d5e141dce016730501b3e4c to your computer and use it in GitHub Desktop.
setup-alpine answer file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# setup-alpine answer file | |
# Set hostname to alpine-test | |
HOSTNAMEOPTS="-n alpine-test" | |
# Use US layout with US variant | |
KEYMAPOPTS="us us" | |
# Contents of /etc/network/interfaces | |
INTERFACESOPTS="auto lo | |
iface lo inet loopback | |
auto eth0 | |
iface eth0 inet dhcp | |
hostname alpine-test | |
" | |
# Set timezone to UTC | |
TIMEZONEOPTS="-z America/New_York" | |
# Proxy Options | |
PROXYOPTS="none" | |
# Add a random mirror | |
APKREPOSOPTS="-1" | |
# Install Openssh | |
SSHDOPTS="-c openssh" | |
# Use openntpd | |
NTPOPTS="-c chrony" | |
# Use /dev/sda as a data disk | |
DISKOPTS="-m sys /dev/sda" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment