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 / nautilus.postrm < prev    next >
Encoding:
Text File  |  2007-04-10  |  695 b   |  24 lines

  1. #!/bin/sh -e
  2.  
  3. if [ "$1" = "purge" ] ; then
  4.     if [ -d /etc/X11/starthere ]; then
  5.         rmdir --ignore-fail-on-non-empty /etc/X11/starthere
  6.     fi
  7.     if [ -d /etc/X11/sysconfig ]; then
  8.         rmdir --ignore-fail-on-non-empty /etc/X11/sysconfig
  9.     fi
  10.     if [ -d /etc/X11/serverconfig ]; then
  11.         rmdir --ignore-fail-on-non-empty /etc/X11/serverconfig
  12.     fi
  13. fi
  14.  
  15. # Automatically added by dh_installmenu
  16. if [ -x "`which update-menus 2>/dev/null`" ]; then update-menus ; fi
  17. # End automatically added section
  18. # Automatically added by dh_desktop
  19. if [ "$1" = "remove" ] && which update-desktop-database >/dev/null 2>&1 ; then
  20.     update-desktop-database -q
  21. fi
  22. # End automatically added section
  23.  
  24.