This commit was manufactured by cvs2svn to create branch
[plcapi.git] / PLC / Methods / UpdateNodeGroup.py
index 6088230..5d31026 100644 (file)
@@ -2,7 +2,7 @@ from PLC.Faults import *
 from PLC.Method import Method
 from PLC.Parameter import Parameter, Mixed
 from PLC.NodeGroups import NodeGroup, NodeGroups
-from PLC.Auth import PasswordAuth
+from PLC.Auth import Auth
 
 can_update = lambda (field, value): field in \
              ['name', 'description']
@@ -19,7 +19,7 @@ class UpdateNodeGroup(Method):
     nodegroup_fields = dict(filter(can_update, NodeGroup.fields.items()))
 
     accepts = [
-        PasswordAuth(),
+        Auth(),
         Mixed(NodeGroup.fields['nodegroup_id'],
              NodeGroup.fields['name']),
         nodegroup_fields
@@ -34,9 +34,13 @@ class UpdateNodeGroup(Method):
        nodegroups = NodeGroups(self.api, [nodegroup_id_or_name])
        if not nodegroups:
             raise PLCInvalidArgument, "No such nodegroup"
-       nodegroup = nodegroups.values()[0]
+       nodegroup = nodegroups[0]
        
        nodegroup.update(nodegroup_fields)
         nodegroup.sync()
-
+       
+       # Logging variables
+       self.object_ids = [nodegroup['nodegroup_id']]
+       self.message = 'Node group %d updated: %s' % \
+               (nodegroup['nodegroup_id'], ", ".join(nodegroup_fields.keys()))  
         return 1