From 890782858c21ebd21476e12af064ca408d77ce6a Mon Sep 17 00:00:00 2001 From: Stephen Gran Date: Sun, 9 Aug 2009 18:40:11 +0000 Subject: [PATCH] Allow management of IP address with ud-host Signed-off-by: Stephen Gran --- ud-host | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ud-host b/ud-host index 77c0b3c..44a9a01 100755 --- 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,"")); -- 2.20.1