aboutsummaryrefslogtreecommitdiff
path: root/services/loopback
diff options
context:
space:
mode:
Diffstat (limited to 'services/loopback')
-rw-r--r--services/loopback10
1 files changed, 10 insertions, 0 deletions
diff --git a/services/loopback b/services/loopback
new file mode 100644
index 0000000..53118b5
--- /dev/null
+++ b/services/loopback
@@ -0,0 +1,10 @@
+description configure network loopback device
+type wait
+target boot
+before sysinit
+after hostname vfs
+
+exec {
+ ip addr add 127.0.0.1/8 dev lo brd +
+ ip link set lo up
+}