Allow management of IP address with ud-host
authorStephen Gran <steve@lobefin.net>
Sun, 9 Aug 2009 18:40:11 +0000 (18:40 +0000)
committerStephen Gran <steve@lobefin.net>
Sun, 9 Aug 2009 18:40:11 +0000 (18:40 +0000)
Signed-off-by: Stephen Gran <steve@lobefin.net>
ud-host

diff --git a/ud-host b/ud-host
index 77c0b3c..44a9a01 100755 (executable)
--- a/ud-host
+++ b/ud-host
@@ -56,6 +56,7 @@ AttrInfo = {"description": ["Machine Descr.", 1],
             "purpose": ["Purposes", 16],
             "allowedGroups": ["Groups", 17],
             "exportOptions": ["Export-Opts", 18],
+            "ipHostNumber": ["IP Address", 19],
             }
 
 AttrPrompt = {"description": ["Purpose of the machine"],
@@ -76,6 +77,7 @@ AttrPrompt = {"description": ["Purpose of the machine"],
               "purpose": ["The purposes of this host"],
               "allowedGroups": ["allowed Groups on this host"],
               "exportOptions": ["additional export options"],
+              "ipHostNumber": ["IP Addresses(es) of the machine"],
               };
 
 # Create a map of IDs to desc,value,attr
@@ -138,7 +140,7 @@ def Overview(Attrs):
 
 # Change a single attribute
 def ChangeAttr(Attrs,Attr):
-   if (Attr in ["sponsor", "sshRSAHostKey", "purpose", "allowedGroups", "exportOptions"]):
+   if (Attr in ["sponsor", "sshRSAHostKey", "purpose", "allowedGroups", "exportOptions", "ipHostNumber"]):
       return MultiChangeAttr(Attrs,Attr);
 
    print "Old value: '%s'" % (GetAttr(Attrs,Attr,""));