Advertisement
Guest User

Untitled

a guest
Sep 4th, 2012
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. servico=$( zenity --list --text="Escolha o serviço a ser reiniciado:" \
  4. --title="Gerenciador de Serviços" \
  5. --column="Serviço:" --column="Descrição:" \
  6. apache2 "Reiniciar Apache" \
  7. bind9 "Reiniciar DNS" \
  8. mysql "Reiniciar MySQL" \
  9. squid "Reiniciar Proxy" \
  10. cups "Reiniciar CUPS" \
  11. network "Reiniciar Rede" \
  12. reboot "Reiniciar Servidor" \
  13. sair "Sair do Gerenciador de Serviços" )
  14.  
  15.  
  16.  
  17. gksu service $servico restart | zenity --progress --width 350 --pulsate --auto-close --text "Reiniciando Serviço" --title "Gerenciador de Serviços";
  18.  
  19.  
  20.  
  21. done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement