Comment 4 for bug 1276029

Revision history for this message
Tong Li (litong01) wrote :

Actually this work around does not really work. The problem is that it avoided using swift for glance. So glance won't use swift as
its store, it will use file store. The right fix should be in files/keystone_data.sh to change this line:

    if [[ "$ENABLED_SERVICES" =~ "s-proxy" ]]; then

to this:

    if [[ "$ENABLED_SERVICES" =~ "swift" ]]; then

This will make sure that the user glance-swift will be created, everything will work as it should.

The work around will not have glance using swift, not good.