From: Stephen Gran Date: Sun, 9 Aug 2009 18:40:11 +0000 (+0000) Subject: Allow management of IP address with ud-host X-Git-Tag: userdir-ldap-0.3.71~17 X-Git-Url: https://git.adam-barratt.org.uk/?p=mirror%2Fuserdir-ldap.git;a=commitdiff_plain;h=890782858c21ebd21476e12af064ca408d77ce6a Allow management of IP address with ud-host Signed-off-by: Stephen Gran --- 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,""));