summaryrefslogtreecommitdiffstats
path: root/debian/ss-dev.preinst
blob: 8da566ed4a8b672b2454a9a799da5c24705286c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/bash

# Abort on error.
set -e

symlink_match()
{
	local SYMLINK="$1"
	local SYMLINK_TARGET="$2"

	[ "$(readlink "$SYMLINK")" = "$SYMLINK_TARGET" ] || \
	[ "$(readlink -f "$SYMLINK")" = "$SYMLINK_TARGET" ]
}

SYMLINK=/usr/share/doc/ss-dev
SYMLINK_TARGET=libss2

if [ "$1" = "install" -o "$1" = "upgrade" ] &&
   [ -n "$2" ] && [ -h "$SYMLINK" ] &&
   symlink_match "$SYMLINK" "$SYMLINK_TARGET"
then
    mv -f "$SYMLINK" "${SYMLINK}.dpkg-backup"
fi

#DEBHELPER#

exit 0