X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=ud-host;h=0e98182ff46e80c0ee2c923bdb8c42affd47103d;hb=ce64087cfde96cea951f7d016aff0128fb7cf678;hp=4fc33a8f9da052e353e0f94bb1bfc7aafa9f2dda;hpb=e2271785ac0186dbcfcb3ff1f7bd186c6146fba1;p=mirror%2Fuserdir-ldap.git diff --git a/ud-host b/ud-host index 4fc33a8..0e98182 100755 --- a/ud-host +++ b/ud-host @@ -58,6 +58,8 @@ AttrInfo = {"description": ["Machine Descr.", 1], "exportOptions": ["Export-Opts", 18], "ipHostNumber": ["IP Address", 19], "mXRecord": ["MXRecord", 20], + "dnsTTL": ["dnsTTL", 21], + "sshdistAuthKeysHost": ["extra authkeys ip", 22], } AttrPrompt = {"description": ["Purpose of the machine"], @@ -80,6 +82,8 @@ AttrPrompt = {"description": ["Purpose of the machine"], "exportOptions": ["additional export options"], "ipHostNumber": ["IP Addresses(es) of the machine"], "mXRecord": ["Mail Exchanger for this machine"], + "dnsTTL": ["dns TTL value"], + "sshdistAuthKeysHost": ["additional hosts for sshdist's authkeys file"], }; # Create a map of IDs to desc,value,attr @@ -142,7 +146,7 @@ def Overview(Attrs): # Change a single attribute def ChangeAttr(Attrs,Attr): - if (Attr in ["sponsor", "sshRSAHostKey", "purpose", "allowedGroups", "exportOptions", "ipHostNumber", "mXRecord"]): + if (Attr in ["sponsor", "sshRSAHostKey", "purpose", "allowedGroups", "exportOptions", "ipHostNumber", "mXRecord", "sshdistAuthKeysHost"]): return MultiChangeAttr(Attrs,Attr); print "Old value: '%s'" % (GetAttr(Attrs,Attr,""));