home *** CD-ROM | disk | FTP | other *** search
/ PC Welt 2006 November (DVD) / PCWELT_11_2006.ISO / casper / filesystem.squashfs / var / lib / dpkg / info / python-minimal.preinst < prev    next >
Encoding:
Text File  |  2006-07-05  |  345 b   |  11 lines

  1. #! /bin/sh -e
  2.  
  3. # remove the python alternatives before installing our own python link
  4.  
  5. update-alternatives --auto /usr/bin/python >/dev/null 2>&1 || true
  6. update-alternatives --remove python /usr/bin/python1.5 || true
  7. update-alternatives --remove python /usr/bin/python2.1 || true
  8. update-alternatives --remove python /usr/bin/python2.2 || true
  9.  
  10.  
  11.