summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md17
1 files changed, 17 insertions, 0 deletions
diff --git a/README.md b/README.md
index 981b8821..3da84db1 100644
--- a/README.md
+++ b/README.md
@@ -45,6 +45,23 @@ Starting both Admin and Service API endpoints:
$ ./bin/keystone
+### Temporary fix for Segfault
+
+On some OSes, specifically Fedora 15, the current versions of
+greenlet/eventlet segfault when running keystone. To fix this, install
+the development versions of greenlet and eventlet
+
+ $ pip uninstall greenlet eventlet
+ $ cd <appropriate working directory>
+ $ hg clone https://bitbucket.org/ambroff/greenlet
+ $ cd greenlet
+ $ sudo python setup.py install
+
+ $ cd <appropriate working directory>
+ $ hg clone https://bitbucket.org/which_linden/eventlet
+ $ cd eventlet
+ $ sudo python setup.py install
+
# For Keystone Contributors