view debian/preinst @ 415:a7dbefcafc43 noffle

[svn] removed useless call of invoke-rc.d
author godisch
date Fri, 20 Jun 2003 06:46:35 +0100 (2003-06-20)
parents b8a73c90bfde
children bfdba1698a58
line wrap: on
line source
#!/bin/sh
# $Id: preinst 543 2003-06-03 21:26:47Z godisch $

set -e

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 || true
	fi
fi

exit 0