X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=ud-host;h=44a9a01b00148d102fa57dd1342aa135bf561010;hb=890782858c21ebd21476e12af064ca408d77ce6a;hp=77c0b3cdfedaae8762defeaa16752ea97e549eb1;hpb=94816beef8147934e62e2e864b116ab65e6572f1;p=mirror%2Fuserdir-ldap.git 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,""));