Changeset 523 for branches

Show
Ignore:
Timestamp:
08/04/10 22:12:36 (22 months ago)
Author:
JulioCP
Message:

Remove unused menu in nw_conf for nightwing-wa

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/nightwing-wa/nightwing/usr/bin/nw_conf

    r515 r523  
    754754} 
    755755 
    756 case_rip_select(){ 
    757         case_rip(){ 
    758                 echo "Enter the Redirect IP: " 
    759                 read IP 
    760                 uci set $NDS.redirect_ip="$IP" 
    761                 uci commit nodogsplash 
    762         } 
    763  
    764         read RIP 
    765         case $RIP in 
    766                 y|Y) 
    767                         case_rip 
    768                         ;; 
    769                 n|N) 
    770                         echo $NOCHANGED_MSG 
    771                         sleep 2 
    772                         ;; 
    773                 *) 
    774                         echo "$RIP is not a valid option" 
    775                         echo "[y/n]: " 
    776                         case_rip_select 
    777                         ;; 
    778                 esac             
    779 } 
    780  
    781  
    782756clear 
    783757echo -e "\033[1m **************** NoDogSplash Config ***************\033[0m" 
     
    786760echo -e "\033[1m b.\033[0m Change Gateway Name" 
    787761echo -e "\033[1m c.\033[0m Change Redirect URL" 
    788 echo -e "\033[1m d.\033[0m Change Redirect IP" 
    789 echo -e "\033[1m e.\033[0m Back to main menu" 
    790 echo -n "Select an option [a - e]: " 
     762echo -e "\033[1m d.\033[0m Back to main menu" 
     763echo -n "Select an option [a - d]: " 
    791764read val5 
    792765case $val5 in 
     
    811784                ;; 
    812785        d|D) 
    813                 echo "The current Redirect IP is: $(uci_get $NDS.redirect_ip)" 
    814                 echo $YESNO_MSG 
    815                 case_rip_select 
    816                 menu_5 
    817                 ;; 
    818         e|E) 
    819786                ;; 
    820787