From: jgg <> Date: Sat, 28 Apr 2001 21:38:51 +0000 (+0000) Subject: Added delete function X-Git-Tag: debian_userdir-ldap_0-3-7~105 X-Git-Url: https://git.adam-barratt.org.uk/?p=mirror%2Fuserdir-ldap.git;a=commitdiff_plain;h=9c46f82fc6e9dc4f6966dafcf2cca92d5f01ec80 Added delete function --- diff --git a/ud-host b/ud-host index d0fe689..e16e31a 100755 --- a/ud-host +++ b/ud-host @@ -211,6 +211,7 @@ while(1): if RootMode == 1: print " a) Arbitary Change"; print " n) New Host"; + print " d) Delete Host"; print " u) Switch Hosts"; print " x) Exit"; @@ -265,6 +266,14 @@ while(1): ChangeAttr(Attrs[0],Attr); continue; + if (Response == 'd'): + Really = raw_input("Really (type yes)? "); + if Really != 'yes': + continue; + print "Deleting",HostDn; + l.delete_s(HostDn); + continue; + # Convert the integer response try: ID = int(Response);