<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
</head>
<body bgcolor="#FFFFFF" text="#000000">
Hi all,<br>
<br>
There have been some recent changes to the devstack script w.r.t.
nova/api-paste.ini that puzzle me. There's the template
api-paste.ini with various tokens that need to be substituted, and
some of them are commented out.<br>
<br>
E.g. <br>
<br>
# admin_user = %SERVICE_USER%<br>
# admin_password = %SERVICE_PASSWORD%<br>
<br>
Fair enough, but then stack.sh runs a sed script and effectively
removes those comments.<br>
<br>
E.g. (from stash.sh)<br>
<br>
The lines marked with "<<<<<" find the token (which
may be commented out) and then replace the entire line.<br>
<br>
<meta http-equiv="content-type" content="text/html;
charset=ISO-8859-1">
sed -e "<br>
/^admin_token/i admin_tenant_name = $SERVICE_TENANT_NAME<br>
/admin_tenant_name/s/^.*$/admin_tenant_name = $SERVICE_TENANT_NAME/;<br>
/admin_user/s/^.*$/admin_user =
nova/;
<<<<<<br>
/admin_password/s/^.*$/admin_password = $SERVICE_PASSWORD/;
<<<<< <br>
s,%SERVICE_TENANT_NAME%,$SERVICE_TENANT_NAME,g;<br>
s,%SERVICE_TOKEN%,$SERVICE_TOKEN,g;<br>
" -i $NOVA_CONF_DIR/api-paste.ini<br>
<br>
Is it just me, or would it would be much less confusing if the
config template was closer to the final result without the need for
magic sed incantations to remove commented out settings? Is that
template config used elsewhere where it might need those comments to
remain in place? (If so, I haven't been able to find 'em.)<br>
<br>
Thanks!<br>
<br>
Ken<br>
</body>
</html>