aports/community/minidlna/minidlna.post-upgrade
Carlo Landmeter 4dd9320140 community/minidlna: move to community and update db dir
moved db dir from /var/cache to /var/lib
added a check in post-upgrade to notify use of this change
2016-12-06 15:05:33 +01:00

11 lines
159 B
Bash

#!/bin/sh
db_dir="/var/cache/minidlna"
if [ -d "$db_dir" ]; then
echo "WARNING: $db_dir found!"
echo "Please move $db_dir to /var/lib/minidlna"
fi
exit 0