From 05c26a9c099fe7616c95daaa3d473ee23f93e1b1 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Thu, 13 Oct 2011 23:30:13 +0100 Subject: [PATCH] virt-sysprep: Use /dev/urandom instead of /dev/random. --- clone/virt-sysprep.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clone/virt-sysprep.in b/clone/virt-sysprep.in index 0262015..12c55bc 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 -- 1.8.3.1