#!/bin/sh

. /etc/news/leafnode/debian-config

# Kill any fetch processes hanging around
if [ "$NETWORK" = "PPP" ]; then
   if [ -f /var/spool/news/leaf.node/lock.file ]; then
      /bin/kill -INT $(cat /var/spool/news/leaf.node/lock.file | head -1)
   fi
fi
