Changeset 1324

Show
Ignore:
Timestamp:
11/10/05 04:31:52 (3 years ago)
Author:
kelmo
Message:

Allow option to ignore old madwifi stuff when uninstalling
Clarify the asked question in sanitychecks

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/scripts/find-madwifi-modules.sh

    r1321 r1324  
    3939        echo "It seems that there are modules left from previous MadWifi installations." 
    4040        echo "You should consider removing them before you continue, or else you might" 
    41         echo "experience problems during operation.
     41        echo "experience problems during operation. Remove old modules?
    4242         
    4343        while true; do 
  • trunk/scripts/find-madwifi-tools.sh

    r1321 r1324  
    5252        echo "It seems that there are tools left from previous MadWifi installations." 
    5353        echo "You should consider removing them before you continue, or else you might" 
    54         echo "experience problems during operation.
     54        echo "experience problems during operation. Remove old tools?
    5555         
    5656        while true; do 
  • trunk/scripts/remove-old-modules.sh

    r1321 r1324  
    5353                while true; do 
    5454                        echo 
    55                         echo -n "[l]ist, [r]emove, e[x]it (l,r,[x]) ? " 
     55                        echo -n "[l]ist, [r]emove, [i]gnore, e[x]it (l,r,i,[x]) ? " 
    5656                        echo 
    5757                        read REPLY 
     
    6868                                        echo 
    6969                                        break 
     70                                        ;; 
     71 
     72                                i|I) 
     73                                        echo 
     74                                        echo "Ignoring old modules" 
     75                                        echo 
     76                                        exit 0 
    7077                                        ;; 
    7178         
  • trunk/scripts/remove-old-tools.sh

    r1321 r1324  
    6161                while true; do 
    6262                        echo 
    63                         echo -n "[l]ist, [r]emove, e[x]it (l,r,[x]) ? " 
     63                        echo -n "[l]ist, [r]emove, [i]gnore, e[x]it (l,r,i,[x]) ? " 
    6464                        echo 
    6565                        read REPLY 
     
    7777                                        exit 0 
    7878                                        ;; 
    79                                          
     79                                 
     80                                i|I) 
     81                                        echo 
     82                                        echo "Ignoring old tools" 
     83                                        echo 
     84                                        exit 0 
     85                                        ;; 
     86 
    8087                                *)  
    8188                                        exit 1