diff options
-rw-r--r-- | clone/virt-sysprep.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clone/virt-sysprep.in b/clone/virt-sysprep.in index 02620155..12c55bc0 100644 --- a/clone/virt-sysprep.in +++ b/clone/virt-sysprep.in @@ -322,7 +322,7 @@ if [ "$random_seed" = "yes" -a "$type" = "linux" ]; then f=$mnt/var/lib/urandom/random-seed fi if [ -n "$f" ]; then - dd if=/dev/random of="$f" bs=8 count=1 conv=nocreat,notrunc 2>/dev/null + dd if=/dev/urandom of="$f" bs=8 count=1 conv=nocreat,notrunc 2>/dev/null fi fi |