Signed-off-by: Stéphane Graber <stgraber@ubuntu.com>
[ "${r#nameserver}" = "$r" ] || echo "$r"
done < /etc/resolv.conf > "${rootfs_path}/etc/resolv.conf"
+ # network configuration
+ cat > "${rootfs_path}/etc/systemd/network/eth0.network" << EOF
+[Match]
+Name=eth0
+
+[Network]
+DHCP=ipv4
+EOF
+
# chroot and configure system
arch-chroot "${rootfs_path}" /bin/bash -s << EOF
mkdir /run/lock
# initialize pacman keyring
pacman-key --init
pacman-key --populate archlinux
+
+# enable networkd
+systemctl enable systemd-networkd
EOF
return 0
}