1
0
Fork 0
mirror of https://github.com/pygos/init-scripts.git synced 2024-05-05 22:05:44 +02:00
init-scripts/services/loopback

11 lines
169 B
Plaintext
Raw Permalink Normal View History

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
}