I have encountered the same error in Folsom yesterday. I tried to
install and use the newest packages but my whole infraestructure failed.
I make a rollback and applied another patch.

PACKAGES:
root@controller:~# dpkg -l | grep keystone
ii  keystone                         2012.2.1-0ubuntu1.2~cloud0                 
         OpenStack identity service - Daemons
ii  python-keystone                  2012.2.1-0ubuntu1.2~cloud0                 
         OpenStack identity service - Python library
ii  python-keystoneclient            1:0.1.3-0ubuntu1.1~cloud0                  
         Client libary for Openstack Keystone API

I changed the requeriments of PYTHON-KEYSTONECLIENT (0.2.2 to 0.1.3) in
this file: /usr/bin/keystone

from:
__requires__ = 'python-keystoneclient==0.2.2'
import sys
from pkg_resources import load_entry_point

if __name__ == '__main__':
    sys.exit(
        load_entry_point('python-keystoneclient==0.2.2', 'console_scripts', 
'keystone')()
    )

to:
__requires__ = 'python-keystoneclient==0.1.3'
import sys
from pkg_resources import load_entry_point

if __name__ == '__main__':
    sys.exit(
        load_entry_point('python-keystoneclient==0.1.3', 'console_scripts', 
'keystone')()
    )


It works like a charm now. I found a paralel MySQL error if someone could need:
http://pedrojimenez.github.com/blog/2013/03/12/new-rrrors-on-fresh-openstack-installations-mysql-and-keystone/

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1122146

Title:
  python-keystoneclient conflicts with python-requests

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/python-keystoneclient/+bug/1122146/+subscriptions

-- 
ubuntu-bugs mailing list
[email protected]
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to