~osomon/gdm/fix-1718446

1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

set -e

if [ "$1" = "install" -o "$1" = "upgrade" ] && [ -n "$2" ] &&
    dpkg --compare-versions "$2" le-nl "3.10.0.1-3~"; then
    if [ -L /etc/pam.d/gdm-launch-environment ]; then
        rm -f /etc/pam.d/gdm-launch-environment
    fi
fi

#DEBHELPER#