2004-04-05 22:16:16 -04:00
|
|
|
#!/bin/sh -e
|
|
|
|
|
|
|
|
action="$1"
|
2005-02-13 20:32:22 -05:00
|
|
|
CONF=/etc/mt-daapd.conf
|
|
|
|
PLAY=/etc/mt-daapd.playlist
|
2004-06-02 01:28:52 -04:00
|
|
|
CACHE=/var/cache/mt-daapd
|
2004-04-05 22:16:16 -04:00
|
|
|
|
|
|
|
case "$1" in
|
|
|
|
configure)
|
2005-02-13 20:32:22 -05:00
|
|
|
if [ -x /etc/init.d/daap ]; then
|
|
|
|
if ( grep "mt-daapd" /etc/init.d/daap > /dev/null 2>&1 ); then
|
|
|
|
echo "Removing /etc/init.d/daap. New startup script is mt-daapd."
|
|
|
|
rm /etc/init.d/daap
|
|
|
|
fi
|
|
|
|
fi
|
2004-04-05 22:16:16 -04:00
|
|
|
if [ ! -f $CONF ] ; then cp /usr/share/doc/mt-daapd/mt-daapd.conf $CONF; fi
|
|
|
|
if [ ! -f $PLAY ] ; then cp /usr/share/doc/mt-daapd/mt-daapd.playlist $PLAY; fi
|
2004-06-02 01:28:52 -04:00
|
|
|
if [ ! -d $CACHE ] ; then mkdir -p $CACHE; fi
|
2004-04-05 22:16:16 -04:00
|
|
|
;;
|
|
|
|
esac
|
2005-02-13 20:32:22 -05:00
|
|
|
|
|
|
|
|
|
|
|
|