From de977c9a059521ad369a0675e27e7de0c5b7af42 Mon Sep 17 00:00:00 2001 From: Praveen Kumar Date: Tue, 12 May 2020 20:03:39 +0530 Subject: [PATCH] Use urandom instead random for rng backend device As per upstream docs https://libvirt.org/formatdomain.html#elementsRng it is recommended to use `/dev/urandom` instead of `/dev/random` to avoid some of limitation which `/dev/random` have. Also installer uses `/dev/urandom` in the instance template. - https://bugzilla.redhat.com/show_bug.cgi?id=1803130 --- constants.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/constants.go b/constants.go index 230de03e..a18fb881 100644 --- a/constants.go +++ b/constants.go @@ -55,7 +55,7 @@ const ( - /dev/random + /dev/urandom `