From 9c46f82fc6e9dc4f6966dafcf2cca92d5f01ec80 Mon Sep 17 00:00:00 2001 From: jgg <> Date: Sat, 28 Apr 2001 21:38:51 +0000 Subject: [PATCH] Added delete function --- ud-host | 9 +++++++++ 1 file changed, 9 insertions(+) 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); -- 2.20.1