Comment 1 for bug 491324

Revision history for this message
Steven Danna (ssd7) wrote :

The problem is in /etc/init.d/smartmontools. The following lines:

  status)
        status_of_proc -p $SMARTDPID $SMARTD smartd && exit 0 || exit $?
        ;;

These should read as follows:

  status)
        status_of_proc -p $PIDFILE $SMARTD smartd && exit 0 || exit $?
        ;;

I would create the debdiff myself but I have very little time at the moment.