vyos-build/data/live-build-config/hooks/01-interfaces.chroot
2016-02-03 03:22:23 -05:00

13 lines
229 B
Bash
Executable File

#!/bin/sh
if ! grep '^auto lo' /etc/network/interfaces &> /dev/null ; then
mkdir -p -m 0755 /etc/network
cat >> /etc/network/interfaces <<-EOF
# The loopback network interface
auto lo
iface lo inet loopback
EOF
fi