aboutsummaryrefslogtreecommitdiffstats
path: root/files
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2013-03-29 11:21:57 +0100
committerFabian Affolter <fabian@affolter-engineering.ch>2013-03-29 11:21:57 +0100
commitcc1c227895a94b02fe98d244a54deda25d753901 (patch)
tree473ff2b25226051b111d9b46663d27fba955ad52 /files
parentfbb7b5053f3aad78649251b46ca76f896753c73e (diff)
downloadalpine-ansible-cc1c227895a94b02fe98d244a54deda25d753901.tar.bz2
alpine-ansible-cc1c227895a94b02fe98d244a54deda25d753901.tar.xz
Default answer file for setup-alpine
Diffstat (limited to 'files')
-rw-r--r--files/alpine-default.conf43
1 files changed, 43 insertions, 0 deletions
diff --git a/files/alpine-default.conf b/files/alpine-default.conf
new file mode 100644
index 0000000..e6431f4
--- /dev/null
+++ b/files/alpine-default.conf
@@ -0,0 +1,43 @@
+# Example answer file for setup-alpine script
+# If you don't want to use a certain option, then comment it out
+
+# Use Swiss German layout
+KEYMAPOPTS="de de_CH-latin1"
+
+# 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 -n 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 sys /dev/vda"
+
+# Setup in /media/sdb1
+#LBUOPTS="/media/sdb1"
+#APKCACHEOPTS="/media/sdb1/cache"
+