change the way 'vref' gets set on omf-control'ed slivers
[plcapi.git] / PLC / Methods / GetSliceFamily.py
index 49aee9b..512cbb1 100644 (file)
@@ -7,6 +7,7 @@ from PLC.Parameter import *
 from PLC.Slices import Slice, Slices
 
 from PLC.Accessors.Accessors_standard import *                 # import slice accessors
+from PLC.Accessors.Accessors_omf import *                      # import slice accessors
 
 class GetSliceFamily(Method):
     """
@@ -50,6 +51,12 @@ class GetSliceFamily(Method):
         # the vref tag, if set, wins over pldistro
         vref = GetSliceVref (self.api).call(auth,slice_id)
 
+        # omf-control'ed slivers need the omf vserver reference image
+        # this is to avoid asking users to set both tags 'omf_control' and 'vref'
+        if not vref and GetSliceOmfControl(self.api).call(auth,slice_id):
+            SetSliceVref (self.api) (auth,slice_id,'omf')
+            vref='omf'
+
         # xxx would make sense to check the corresponding vserver rpms are available
         # in all node-families yum repos (and yumgroups, btw)
         if vref: