diff options
Diffstat (limited to 'config')
-rwxr-xr-x | config/chroot_local-hooks/hotfixes.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/config/chroot_local-hooks/hotfixes.sh b/config/chroot_local-hooks/hotfixes.sh index 9a3438a..1c8f5b5 100755 --- a/config/chroot_local-hooks/hotfixes.sh +++ b/config/chroot_local-hooks/hotfixes.sh @@ -53,3 +53,13 @@ alias rm='rm -i' alias cp='cp -i' alias mv='mv -i' EOT + +# /etc/network/interfaces that works with network-manager +cat <<EOT > /etc/network/interfaces +# Used by ifup(8) and ifdown(8). See the interfaces(5) manpage or +# /usr/share/doc/ifupdown/examples for more information. + +auto lo +iface lo inet loopback +EOT + |