You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@libcloud.apache.org by pq...@apache.org on 2010/01/05 01:26:18 UTC

svn commit: r895838 - /incubator/libcloud/trunk/libcloud/drivers/rimuhosting.py

Author: pquerna
Date: Tue Jan  5 00:26:18 2010
New Revision: 895838

URL: http://svn.apache.org/viewvc?rev=895838&view=rev
Log:
advertise features in rimuhosting driver

Modified:
    incubator/libcloud/trunk/libcloud/drivers/rimuhosting.py

Modified: incubator/libcloud/trunk/libcloud/drivers/rimuhosting.py
URL: http://svn.apache.org/viewvc/incubator/libcloud/trunk/libcloud/drivers/rimuhosting.py?rev=895838&r1=895837&r2=895838&view=diff
==============================================================================
--- incubator/libcloud/trunk/libcloud/drivers/rimuhosting.py (original)
+++ incubator/libcloud/trunk/libcloud/drivers/rimuhosting.py Tue Jan  5 00:26:18 2010
@@ -15,7 +15,7 @@
 # Copyright 2009 RedRata Ltd
 
 from libcloud.types import Provider, NodeState
-from libcloud.base import ConnectionKey, Response, NodeDriver, NodeSize, Node
+from libcloud.base import ConnectionKey, Response, NodeAuthPassword, NodeDriver, NodeSize, Node
 from libcloud.base import NodeImage
 from copy import copy
 
@@ -250,4 +250,5 @@
         node.extra['password'] = res['new_order_request']['instantiation_options']['password']
         return node
     
+    features = {"create_node": ["password"]}