Advertisement
Guest User

Untitled

a guest
Nov 11th, 2011
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. ! /bin/sh
  2.  
  3. # apt postrm
  4. # Copyright (C) 1998, Ben Gertzfield <che@debian.org>
  5.  
  6. # This program is free software; you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation; either version 2 of the License, or
  9. # (at your option) any later version.
  10.  
  11. set -e
  12.  
  13. # Automatically added by dh_makeshlibs
  14. if [ "$1" = "remove" ]; then
  15. ldconfig
  16. fi
  17. # End automatically added section
  18.  
  19.  
  20. case "$1" in
  21. remove)
  22. ;;
  23. purge)
  24. rm -rf /var/cache/apt
  25. rm -rf /var/lib/apt
  26. esac
  27.  
  28.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement