lost this for a second

This commit is contained in:
Ron Pedde 2004-04-06 02:16:16 +00:00
parent bcb9fe21c6
commit c83f091dc7

12
debian/postinst vendored Normal file
View File

@ -0,0 +1,12 @@
#!/bin/sh -e
action="$1"
CONF=/etc/mt-daapd.conf
PLAY=/etc/mt-daapd.playlist
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
;;
esac