don't hardcode the device name.
[nodemanager.git] / plugins / rawdisk.py
index f81ca26..8124f67 100644 (file)
@@ -46,7 +46,7 @@ def get_unused_devices():
     partitions.close()
     return devices
 
-def GetSlivers(plc, data, conf):
+def GetSlivers(data, config=None, plc=None):
     if 'slivers' not in data: 
         logger.log("sliverauth: getslivers data lack's sliver information. IGNORING!")
         return
@@ -59,9 +59,14 @@ def GetSlivers(plc, data, conf):
                 for i in devices:
                     st = os.stat(i)
                     path = "/vservers/%s%s" % (sliver['name'], i)
+                    if os.path.exists(path):
+                        # should check whether its the proper type of device
+                        continue
+                    
                     logger.log("Copying %s to %s" % (i, path))
                     try:
-                        os.unlink(path)
+                        if os.path.exists(path):
+                            os.unlink(path)
                     except:
                         pass
                     os.mknod(path, st.st_mode, st.st_rdev)