removido
(usa Nenhuma)
Enviado em 12/08/2011 - 11:51h
Olá, gostaria de criar um instalador shell script com zenity.
vou da ex:
----------------------------------------------------------------------------------------------------------------------
#!/bin/bash
#Verifica se o usuário é root
if [ "`id -u`" != "0" ] ; then
gksu $0
fi
zenity --info --title "..::RWinstall - V1.5::.." --text "Instalador RWinstall V1.5"
SELECT=`zenity --list --radiolist --height=500 --width=320 --column "X" --column "Selecione a Instalação" \
FALSE "UbuntuRestrictedExtras" \
FALSE "LampServer"`
if echo $SELECT | grep $"UbuntuRestrictedExtras"; then
sudo apt-get install ubuntu-restricted-extras
fi
if echo $SELECT | grep $"LampServer"; then
sudo apt-get install apache2 mysql-server-5.1 php5 php5-mysql php5-gd
fi
if [ "$SELECT" -ne "0" ]; then
sudo apt-get install $SELECT | zenity --progress
--title "..::teste::.." --pulsate --auto-close --auto-kill --text "Baixando e instalando os programas escolhidos... Por favor aguarde."
zenity --info --title "..::teste::.." --text "Todos os programas foram instalados. Obrigado por usar este script.
else
zenity --info --title "..::teste::.." --text "Nenhum pacote foi escolhido. O script será encerrado, obrigado.
fi
--------------------------------------------------------------------------------------------------------------------
problema é q nao sei como fazer a instalação..como eu termino o script com ele mostrando um progresso da instalação e instalando, pq no meu caso nao instala nada, diz q:
Nenhum pacote foi escolhido. O script será encerrado, obrigado.