12 lines
299 B
Bash
12 lines
299 B
Bash
#!/bin/sh
|
|
if [ "$2" != "DEINSTALL" ]; then
|
|
exit 0
|
|
fi
|
|
|
|
for x in addressbooks/global calendar.book; do
|
|
if [ ! -s "${PKG_PREFIX}/www/cgi-bin/openwebmail/etc/${x}" ]; then
|
|
rm ${PKG_PREFIX}/www/cgi-bin/openwebmail/etc/${x}
|
|
fi
|
|
done
|
|
|
|
rm -fr ${PKG_PREFIX}/www/cgi-bin/openwebmail/etc/sessions/*
|