#!/bin/sh DAEMON=/usr/bin/nowplayingd DSMETOOL=/usr/sbin/dsmetool DSMETOOL_PARAMETERS="-k" if [ -x $DAEMON ]; then echo "Stopping nowplayingd..." $DSMETOOL $DSMETOOL_PARAMETERS $DAEMON || true fi