From 06b7ad7c0500be13b60d0b1852517b3691afbf03 Mon Sep 17 00:00:00 2001 From: Anthony Young Date: Tue, 4 Oct 2011 13:30:19 -0700 Subject: [PATCH] don't require uuidgen, as it isn't always in sparse natty installs --- stack.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stack.sh b/stack.sh index 3d73ef3..3b66db5 100755 --- a/stack.sh +++ b/stack.sh @@ -211,7 +211,7 @@ GLANCE_HOSTPORT=${GLANCE_HOSTPORT:-$HOST_IP:9292} # Service Token - Openstack components need to have an admin token # to validate user tokens. -SERVICE_TOKEN=${SERVICE_TOKEN:-`uuidgen`} +SERVICE_TOKEN=${SERVICE_TOKEN:-`openssl rand -hex 12`} ADMIN_PASSWORD=${ADMIN_PASSWORD:-`openssl rand -hex 12`}