Files
ruglory f856d58660 /etc/init.d/dbus call replaced by invoke-rc.d
explicit dependency on lightscribe removed


git-svn-id: https://svn.code.sf.net/p/qlscribe/svn/trunk@165 cac9541e-1b8d-4bfa-827e-589bba606050
2010-01-19 02:15:51 +00:00

19 lines
201 B
Bash

#!/bin/sh
set -e
if [ "$1" = "remove" -o "$1" = "upgrade" ] ; then
if PID=`pidof lscribed` ; then
kill $PID
fi
fi
if [ "$1" = "remove" ] ; then
invoke-rc.d dbus reload
fi
#DEBHELPER#
exit 0