Parameter 'rec' missing in __init__ method
[nodemanager.git] / sliver_lxc.py
index 49ebb1c..a93a215 100644 (file)
@@ -2,14 +2,18 @@
 
 """LXC slivers"""
 
+import accounts
+
 class Sliver_LXC(accounts.Account):
     """This class wraps LXC commands"""
 
     SHELL = '/bin/bash'
     TYPE = 'sliver.LXC'
+    # Need to add a tag at myplc to actually use this account
+    # type = 'sliver.LXC'
 
-    def __init__(self):
-        pass
+    def __init__(self, rec):
+        print "TODO __init__"
     
     @staticmethod
     def create(name, rec = None):