2011-11-01 13:11:52 +00:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Simple script to purge the mason cache
|
|
|
|
# http://requesttracker.wikia.com/wiki/CleanMasonCache
|
|
|
|
#
|
2012-01-12 00:16:41 +00:00
|
|
|
CACHE_DIR="__RT_CACHEDIR__/mason_data/obj/"
|
2011-11-01 13:11:52 +00:00
|
|
|
|
|
|
|
if [ ! -d "$CACHE_DIR" ]; then
|
|
|
|
echo "Nothing to clean, the mason cache directory does not exist" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ "$CACHE_DIR" != "/" ] && [ "$CACHE_DIR" != "" ]; then
|
|
|
|
find "$CACHE_DIR" -type f -exec rm -f {} \;
|
|
|
|
fi
|
|
|
|
|
2018-09-12 21:48:21 +00:00
|
|
|
if [ -x /usr/sbin/rcapache2 ]; then
|
|
|
|
/usr/sbin/rcapache2 try-restart
|
2011-11-01 13:11:52 +00:00
|
|
|
fi
|