Advertisement
Guest User

Untitled

a guest
Apr 20th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.69 KB | None | 0 0
  1. #!/bin/sh
  2. echo "Limpando servicos"
  3. echo "Limpando usuario"
  4. dscl localhost -delete /Local/Default/Users/firebird
  5. echo "Limpando grupos"
  6. dscl localhost -delete /Local/Default/Groups/firebird
  7. if [ -f "/Library/StartupItems/Firebird" ]; then
  8. echo "Limpando Itens de Inicialização"
  9. rm -fr /Library/StartupItems/Firebird
  10. fi
  11. if [ -f "/Library/LaunchDaemons/org.firebird.gds.plist" ]; then
  12. echo "Limpando Launchd"
  13. launchctl unload /Library/LaunchDaemons/org.firebird.gds.plist
  14. rm /Library/LaunchDaemons/org.firebird.gds.plist
  15. fi
  16. echo "Limpando Framework"
  17. rm -fr /Library/Frameworks/Firebird.framework
  18. echo "Limpando Recibos"
  19. rm -fr /Library/Receipts/Firebird*.pkg
  20. echo "Limpando /tmp/firebird"
  21. rm -fr /tmp/firebird
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement