Changeset 3753


Ignore:
Timestamp:
02/14/11 15:16:45 (13 years ago)
Author:
niltonneto
Message:

Ticket #1549 - Atualizado script de instalação para Lenny e Squeeze.

Location:
branches/2.2/doc-expressolivre
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • branches/2.2/doc-expressolivre/debian/expressoInstallDebian-lenny.sh

    r3018 r3753  
    194194############################################################################################ 
    195195 
    196 ## Mudamos o debconf para high, default do Debian Etch. 
     196## Mudamos o debconf para high, default do Debian Lenny. 
    197197debconf-set-selections ./arqs-conf/debconf.high 
    198198## Fim da configuração do DebConf 
  • branches/2.2/doc-expressolivre/expressoInstall-es.sh

    r3665 r3753  
    66   cecho 1 44 "| http://www.expressolivre.org                                            |"; 
    77   cecho 1 44 "| Script Generico para instalación del ambiente Expresso Livre.           |"; 
    8    cecho 1 44 "| Versión de Script 1.2 - Data 17/08/2009                                 |"; 
     8   cecho 1 44 "| Versión de Script 1.3 - Data 11/02/2011                                 |"; 
    99   cecho 1 44 "| IMPORTANTE: LEA EL ARCHIVO README Y PREINSTALL ANTES DE INSTALAR!!!     |"; 
    1010   cecho 1 44 "| Cada script de cada distribuición posee su administrador                |"; 
     
    1414   cecho 33 1 "Seleccione su distribución Linux:" 
    1515   echo 
    16    cecho 1 1 "1. Debian Sarge" 
    17    cecho 1 1 "2. Debian Etch (UTF-8)" 
    18    cecho 1 1 "3. Debian Etch (ISO-8859-1)" 
    19    cecho 1 1 "4. Debian Lenny (UTF-8)" 
    20    cecho 1 1 "5. SuSe 10.0" 
    21    cecho 1 1 "6. SuSe 10.1" 
    22    cecho 1 1 "7. CentOS 5" 
    23    cecho 1 1 "8. Red Hat Enterprise 5"    
    24    cecho 1 1 "9. Salir del Script" 
     16   cecho 1 1 "1. Debian Lenny" 
     17   cecho 1 1 "2. Debian Squeeze" 
     18   cecho 1 1 "3. SuSe 10.0" 
     19   cecho 1 1 "4. SuSe 10.1" 
     20   cecho 1 1 "5. CentOS 5" 
     21   cecho 1 1 "6. Red Hat Enterprise 5"    
     22   cecho 1 1 "0. Sair do Script" 
    2523   echo 
    2624   cecho 32 1 "Escribe su opción y presione ENTER: " -n; read opcao; 
    2725   case $opcao in 
    28      1) InstalarDebian_sarge;; 
    29      2) InstalarDebian_etch ;; 
    30      3) InstalarDebian_etch_iso ;; 
    31      4) InstalarDebian_lenny ;; 
    32      5) InstalarSuse_100 ;; 
    33      6) InstalarSuse_101 ;; 
    34      7) InstalarCentos_5 ;; 
    35      8) InstalarRH_E5 ;; 
    36      9) Fin;; 
     26     1) InstalarDebian_lenny ;; 
     27     2) InstalarDebian_squeeze ;; 
     28     3) InstalarSuse_100 ;; 
     29     4) InstalarSuse_101 ;; 
     30     5) InstalarCentos_5 ;; 
     31     6) InstalarRH_E5 ;; 
     32     0) Fin;; 
    3733     *) cecho 31 1 "Error: Opción inválida" ; sleep 1; clear; Principal; 
    3834   esac 
     
    5753} 
    5854# Funcoes que invocam os respectivos scripts 
    59 InstalarDebian_sarge() 
     55InstalarDebian_lenny() 
    6056{ 
    61         echo "Llamado el script para el Debian Sarge ..."; 
    62     cd debian;./expressoInstallDebian-sarge.sh;  
     57    echo "Llamando el script para  Debian Lenny ..."; 
     58    cd debian;./expressoInstallDebian-lenny-es.sh; 
    6359        returnMain; 
    6460} 
    65 InstalarDebian_etch() 
     61InstalarDebian_squeeze() 
    6662{ 
    67     echo "Llamando el script para el Debian Etch ..."; 
    68     cd debian;./expressoInstallDebian-etch.sh; 
    69         returnMain; 
    70 } 
    71 InstalarDebian_etch_iso() 
    72 { 
    73     echo "Llamando el script para Debian Etch (ISO-8859-1) ..."; 
    74     cd debian;./expressoInstallDebian-etch-ISO8859-1.sh; 
    75         returnMain; 
    76 } 
    77 InstalarDebian_lenny() 
    78 { 
    79     echo "Llamando el script para  Debian Etch ..."; 
    80     cd debian;./expressoInstallDebian-lenny.sh; 
     63    echo "Llamando el script para  Debian Squeeze ..."; 
     64    cd debian;./expressoInstallDebian-squeeze.sh; 
    8165        returnMain; 
    8266} 
Note: See TracChangeset for help on using the changeset viewer.