diff options
author | Chloe Kudryavtsev <toast@toastin.space> | 2018-12-05 23:36:49 -0500 |
---|---|---|
committer | Chloe Kudryavtsev <toast@toastin.space> | 2018-12-05 23:36:49 -0500 |
commit | 494f09955d4e6ca15dc1e2e9c7e091ef8bd56593 (patch) | |
tree | 8bf41ad1e47e5cba3dae4afd3e13b863e363fc44 /modules/Installing/examples/setup_example.sh | |
parent | f9b48c4e6cc1c8bc2c6823842c0a1a5a6033d480 (diff) | |
download | user-handbook-494f09955d4e6ca15dc1e2e9c7e091ef8bd56593.tar.bz2 user-handbook-494f09955d4e6ca15dc1e2e9c7e091ef8bd56593.tar.xz |
Add setup-alpine user-handbook page & example
Diffstat (limited to 'modules/Installing/examples/setup_example.sh')
-rw-r--r-- | modules/Installing/examples/setup_example.sh | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/modules/Installing/examples/setup_example.sh b/modules/Installing/examples/setup_example.sh new file mode 100644 index 0000000..2023895 --- /dev/null +++ b/modules/Installing/examples/setup_example.sh @@ -0,0 +1,42 @@ +# Example answer file for setup-alpine script +# If you don't want to use a certain option, then comment it out + +# Use US layout with US variant +KEYMAPOPTS="us us" + +# Set hostname to alpine-test +HOSTNAMEOPTS="-n alpine-test" + +# Contents of /etc/network/interfaces +INTERFACESOPTS="auto lo +iface lo inet loopback + +auto eth0 +iface eth0 inet dhcp + hostname alpine-test +" + +# Search domain of example.com, Google public nameserver +DNSOPTS="-d example.com 8.8.8.8" + +# Set timezone to UTC +TIMEZONEOPTS="-z UTC" + +# set http/ftp proxy +PROXYOPTS="http://webproxy:8080" + +# Add a random mirror +APKREPOSOPTS="-r" + +# Install Openssh +SSHDOPTS="-c openssh" + +# Use openntpd +NTPOPTS="-c openntpd" + +# Use /dev/sda as a data disk +DISKOPTS="-m data /dev/sda" + +# Setup in /media/sdb1 +LBUOPTS="/media/sdb1" +APKCACHEOPTS="/media/sdb1/cache" |