summaryrefslogtreecommitdiff
path: root/debian/xbase-clients.preinst.in
blob: 9428c1db91594748bd0db7f44ddf8de222399afe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

set -e

THIS_PACKAGE=xbase-clients
THIS_SCRIPT=preinst

#INCLUDE_SHELL_LIB#

case $1 in
  upgrade|install)
  if dpkg --compare-versions "$2" lt-nl 1:7.4+2; then
    remove_conffile_lookup $THIS_PACKAGE /etc/X11/app-defaults/Beforelight
  fi
  ;;
esac

#DEBHELPER#

# vim:set ai et sw=2 ts=2 tw=80: