diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2017-02-14 07:51:04 +0100 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2017-02-14 07:51:04 +0100 |
commit | 24dada8ba62fa95698f5ed5ac87cd2c9c87c1b5e (patch) | |
tree | b91898309a98ad25ff552aed2f52187b2b89c374 /scripts | |
parent | 2a3c2d65364e35b3c5894bfb5ef375372fcd6499 (diff) | |
download | imagefish-24dada8ba62fa95698f5ed5ac87cd2c9c87c1b5e.tar.gz |
no network for configs
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/config-berlin.sh | 1 | ||||
-rwxr-xr-x | scripts/config-rootpasswd.sh | 2 | ||||
-rwxr-xr-x | scripts/config-systemd-network.sh | 2 |
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" |