Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- servico=$( zenity --list --text="Escolha o serviço a ser reiniciado:" \
- --title="Gerenciador de Serviços" \
- --column="Serviço:" --column="Descrição:" \
- apache2 "Reiniciar Apache" \
- bind9 "Reiniciar DNS" \
- mysql "Reiniciar MySQL" \
- squid "Reiniciar Proxy" \
- cups "Reiniciar CUPS" \
- network "Reiniciar Rede" \
- reboot "Reiniciar Servidor" \
- sair "Sair do Gerenciador de Serviços" )
- gksu service $servico restart | zenity --progress --width 350 --pulsate --auto-close --text "Reiniciando Serviço" --title "Gerenciador de Serviços";
- done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement