1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-25 20:25:28 +03:00
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

10 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