#!/bin/sh
# pre install script for the Debian GNU/Linux lpr package

set -e

(kill -9 `cat /var/run/lpd.pid`) 2>/dev/null || exit 0
rm -f /var/run/lpd.pid

