blob: 29e509108209f7c40de9f5943da7cf5d961700f3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
#
if [ -d /var/spool/fax ]; then
filecount="`find /var/spool/fax -type f 2>/dev/null | wc -l`"
if [ $filecount -eq 0 ]; then
echo "Removing empty fax spool directories..."
rm -r /var/spool/fax
fi
fi
|