Added delete function
authorjgg <>
Sat, 28 Apr 2001 21:38:51 +0000 (21:38 +0000)
committerjgg <>
Sat, 28 Apr 2001 21:38:51 +0000 (21:38 +0000)
ud-host

diff --git a/ud-host b/ud-host
index d0fe689..e16e31a 100755 (executable)
--- 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);