~agateau/kdebase-workspace/fdo-notifications

« back to all changes in this revision

Viewing changes to debian/kdebase-workspace-bin.preinst

  • Committer: Harald Sitter
  • Date: 2008-12-04 07:21:55 UTC
  • Revision ID: apachelogger@ubuntu.com-20081204072155-ih7lhkqv28ll6v3h
Initial import.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
 
 
3
set -e
 
4
 
 
5
case "$1" in
 
6
    upgrade)
 
7
        # Remove hardy KDE 4 default
 
8
        update-alternatives --remove x-session-manager /usr/lib/kde4/bin/startkde || true
 
9
        ;;
 
10
esac
 
11
 
 
12