view debian/preinst @ 377:21300895412f noffle

[svn] * src/common.h,src/control.c,src/noffle.c,src/post.c: Find actual bug causing Debian #187068 and fix that. * src/filter.c: Code should be #ifdef'd out, not commented out.
author bears
date Thu, 03 Apr 2003 18:21:24 +0100
parents 5ec39beae9c5
children b8a73c90bfde
line wrap: on
line source

#!/bin/sh
# $Id: preinst 459 2003-02-22 21:54:34Z godisch $

set -e

if [ "$1" = install -o "$1" = upgrade ]; then
	# this directory may still exist because of old lock files,
	# make sure the symlink can be installed
	if [ -d /var/spool/noffle/lock ]; then
		if [ -d /var/lock/noffle ]; then
			rm -rf /var/spool/noffle/lock
		else
			mv /var/spool/noffle/lock /var/lock/noffle || :
		fi
	fi
fi

exit 0