home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2007 September / PCWSEP07.iso / Software / Linux / Linux Mint 3.0 Light / LinuxMint-3.0-Light.iso / casper / filesystem.squashfs / var / lib / dpkg / info / console-setup.postrm < prev    next >
Encoding:
Text File  |  2007-04-10  |  631 b   |  27 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. if [ purge = "$1" ]; then
  6.     rm -f /etc/default/console-setup
  7.     rm -rf /etc/console-setup
  8. fi
  9.  
  10. # Automatically added by dh_installinit
  11. if [ "$1" = "purge" ] ; then
  12.     update-rc.d keyboard-setup remove >/dev/null || exit $?
  13. fi
  14. # End automatically added section
  15. # Automatically added by dh_installinit
  16. if [ "$1" = "purge" ] ; then
  17.     update-rc.d console-setup remove >/dev/null || exit $?
  18. fi
  19. # End automatically added section
  20. # Automatically added by dh_installdebconf
  21. if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then
  22.     . /usr/share/debconf/confmodule
  23.     db_purge
  24. fi
  25. # End automatically added section
  26.  
  27.