aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xscripts/config-berlin.sh1
-rwxr-xr-xscripts/config-rootpasswd.sh2
-rwxr-xr-xscripts/config-systemd-network.sh2
3 files changed, 3 insertions, 2 deletions
diff --git a/scripts/config-berlin.sh b/scripts/config-berlin.sh
index 406ef2c..039f439 100755
--- a/scripts/config-berlin.sh
+++ b/scripts/config-berlin.sh
@@ -7,5 +7,6 @@ if test "$image" = ""; then
fi
set -ex
virt-customize -a "$image" \
+ --no-network \
--timezone "Europe/Berlin" \
--write "/etc/vconsole.conf:KEYMAP=de-nodeadkeys"
diff --git a/scripts/config-rootpasswd.sh b/scripts/config-rootpasswd.sh
index e0daf90..155fdad 100755
--- a/scripts/config-rootpasswd.sh
+++ b/scripts/config-rootpasswd.sh
@@ -6,4 +6,4 @@ if test "$image" = "" -o "$passwd" = ""; then
exit 1
fi
set -ex
-virt-customize -a "$image" --root-password "password:$passwd"
+virt-customize -a "$image" --no-network --root-password "password:$passwd"
diff --git a/scripts/config-systemd-network.sh b/scripts/config-systemd-network.sh
index b48419b..7869565 100755
--- a/scripts/config-systemd-network.sh
+++ b/scripts/config-systemd-network.sh
@@ -50,4 +50,4 @@ copy-in $WORK/ethernet.network:/etc/systemd/network
EOF
set -ex
-virt-customize -a "$image" --commands-from-file "$WORK/script"
+virt-customize -a "$image" --no-network --commands-from-file "$WORK/script"