Skip to content

Instantly share code, notes, and snippets.

@jnovack
Created August 10, 2020 19:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jnovack/e94425d92d5e141dce016730501b3e4c to your computer and use it in GitHub Desktop.
Save jnovack/e94425d92d5e141dce016730501b3e4c to your computer and use it in GitHub Desktop.
setup-alpine answer file
# 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