bugtracker added
[nowplayingd] / debian / prerm
1 #!/bin/sh
2
3 DAEMON=/usr/bin/nowplayingd
4 DSMETOOL=/usr/sbin/dsmetool
5 DSMETOOL_PARAMETERS="-k"
6
7 if [ -x $DAEMON ]; then
8         echo "Stopping nowplayingd..."
9         $DSMETOOL $DSMETOOL_PARAMETERS $DAEMON || true
10 fi