~ubuntu-branches/ubuntu/quantal/lightdm-kde/quantal

« back to all changes in this revision

Viewing changes to debian/postrm

  • Committer: Package Import Robot
  • Author(s): Aurélien Gâteau
  • Date: 2012-02-14 16:48:06 UTC
  • Revision ID: package-import@ubuntu.com-20120214164806-1h5fuu1yn3lv01jt
Tags: 0.0.git20120214-0ubuntu1
Initial package

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
set -e
 
3
 
 
4
case "$1" in
 
5
remove|purge)
 
6
    if [ -x /usr/lib/lightdm/lightdm-set-defaults ] ; then
 
7
        /usr/lib/lightdm/lightdm-set-defaults --remove --greeter=lightdm-kde-greeter || true
 
8
    fi
 
9
    ;;
 
10
esac
 
11
 
 
12
#DEBHELPER#
 
13