aboutsummaryrefslogtreecommitdiffstats
path: root/modules/Installing/examples
diff options
context:
space:
mode:
Diffstat (limited to 'modules/Installing/examples')
-rw-r--r--modules/Installing/examples/dhcp.interfaces5
-rw-r--r--modules/Installing/examples/repositories.apk2
-rw-r--r--modules/Installing/examples/resolv.conf2
-rw-r--r--modules/Installing/examples/static.interfaces8
4 files changed, 17 insertions, 0 deletions
diff --git a/modules/Installing/examples/dhcp.interfaces b/modules/Installing/examples/dhcp.interfaces
new file mode 100644
index 0000000..104c1a1
--- /dev/null
+++ b/modules/Installing/examples/dhcp.interfaces
@@ -0,0 +1,5 @@
+auto lo
+iface lo inet loopback
+
+auto eth0
+iface eth0 inet dhcp
diff --git a/modules/Installing/examples/repositories.apk b/modules/Installing/examples/repositories.apk
new file mode 100644
index 0000000..8b2b010
--- /dev/null
+++ b/modules/Installing/examples/repositories.apk
@@ -0,0 +1,2 @@
+http://dl-cdn.alpinelinux.org/alpine/v3.8/main
+http://dl-cdn.alpinelinux.org/alpine/v3.8/community
diff --git a/modules/Installing/examples/resolv.conf b/modules/Installing/examples/resolv.conf
new file mode 100644
index 0000000..bb27186
--- /dev/null
+++ b/modules/Installing/examples/resolv.conf
@@ -0,0 +1,2 @@
+nameserver 1.1.1.1
+nameserver 8.8.8.8
diff --git a/modules/Installing/examples/static.interfaces b/modules/Installing/examples/static.interfaces
new file mode 100644
index 0000000..e16d15e
--- /dev/null
+++ b/modules/Installing/examples/static.interfaces
@@ -0,0 +1,8 @@
+auto lo
+iface lo inet loopback
+
+auto eth0
+iface eth0 inet static
+ address 192.168.0.147
+ netmask 255.255.255.0
+ gateway 192.168.0.1