From e8ffc4d756e8c0dc1b5ca37e5f0dfa857883ccd4 Mon Sep 17 00:00:00 2001 From: "Kevin Veen-Birkenbach [aka. Frantz]" Date: Thu, 11 Jun 2020 10:13:54 +0200 Subject: [PATCH] Solved internet connection bug --- scripts/image/base.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/image/base.sh b/scripts/image/base.sh index b2aa5b3..534dfd7 100644 --- a/scripts/image/base.sh +++ b/scripts/image/base.sh @@ -72,6 +72,6 @@ copy_qemu(){ copy_resolve_conf(){ info "Copy resolve.conf..." && - cp -v /etc/resolv.conf "$root_mount_path""etc/" || + cp --remove-destination -v /etc/resolv.conf "$root_mount_path""etc/" || warning "Failed. Propably there is no internet connection available." }