Don't use uuidgen in install.sh

uuidgen is not present in Ubuntu. This simply reads 16 bytes from
/dev/random and stores their hex representation.

Change-Id: If1152242b024218f20bd4c787e03836f0d5f49cf
Signed-off-by: Tomas Sedovic <tomas@sedovic.cz>
This commit is contained in:
Tomas Sedovic 2012-07-27 14:37:17 +02:00
parent 58cd52624b
commit b6d2608dd2

View File

@ -21,7 +21,7 @@ do
echo "not copying over $CONF_DIR/$f"
diff -u $CONF_DIR/$f $f
elif [ $f = 'heat-engine.conf' ]; then
cat $f | sed s/%ENCRYPTION_KEY%/`/bin/uuidgen`/ > $CONF_DIR/$f
cat $f | sed s/%ENCRYPTION_KEY%/`hexdump -n 16 -v -e '/1 "%02x"' /dev/random`/ > $CONF_DIR/$f
else
cp $f $CONF_DIR
fi