Fix gdbm for debian stable, configure problem with new howl

This commit is contained in:
Ron Pedde
2004-06-02 05:28:52 +00:00
parent d895dc8b41
commit 483d354468
5 changed files with 29 additions and 7 deletions

2
debian/postinst vendored
View File

@@ -3,10 +3,12 @@
action="$1"
CONF=/etc/mt-daapd.conf
PLAY=/etc/mt-daapd.playlist
CACHE=/var/cache/mt-daapd
case "$1" in
configure)
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
if [ ! -d $CACHE ] ; then mkdir -p $CACHE; fi
;;
esac