grizzly sample_data.sh ignores password variables
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
OpenStack Identity (keystone) |
Fix Released
|
Medium
|
Robert Hyerle | ||
Grizzly |
Fix Released
|
Medium
|
Dolph Mathews |
Bug Description
The change merged as part of bug #1073291 removes useful functionality - pre grizzly, it was possible to pass in a specific password via the ADMIN_PASSWORD and SERVICE_PASSWORD variables, but these variables are now ignored.
# Please set these, they are ONLY SAMPLE PASSWORDS!
ADMIN_PASSWORD=
if [[ "$ADMIN_PASSWORD" == "secrete" ]]; then
echo "The default admin password has been detected. Please consider"
echo "setting an actual password in environment variable ADMIN_PASSWORD"
fi
SERVICE_
if [[ "$SERVICE_PASSWORD" == "$ADMIN_PASSWORD" ]]; then
echo "The default service password has been detected. Please consider"
echo "setting an actual password in environment variable SERVICE_PASSWORD"
fi
For some reason, this code was completely removed from sample_data.sh, instead of just aligning the values with the docs.
This silently breaks any scripts which specify a password, which is pretty confusing when moving from Folsom until you realize what is going wrong (e.g the heat tools/openstack script : https:/
Changed in keystone: | |
assignee: | nobody → Robert Hyerle (hyerle) |
Changed in keystone: | |
importance: | Undecided → Medium |
tags: | added: grizzly-backport-potential |
tags: | removed: grizzly-backport-potential |
Changed in keystone: | |
milestone: | none → havana-1 |
status: | Fix Committed → Fix Released |
Changed in keystone: | |
milestone: | havana-1 → 2013.2 |
Fix proposed to branch: master /review. openstack. org/27653
Review: https:/