Update cleanup.sh

This commit is contained in:
Josh North 2016-05-12 13:39:37 -04:00
parent 04cfe87afa
commit 14cbb88cdc

View File

@ -27,6 +27,6 @@ find /usr/share/doc | egrep "\copyright" | xargs rm -rf
find /usr/share/locale -mindepth 1 -maxdepth 1 ! -name 'en' |xargs rm -rf
# Delete old log files
logrotate -f /etc/logrotate.conf
find /var/log -type f -regex '.*/[^/]*.gz$' -delete && find /var/log -type f -regex '.*/[^/]*.[0-9]$' -delete
#find /var/log -type f -regex '.*/[^/]*.gz$' -delete && find /var/log -type f -regex '.*/[^/]*.[0-9]$' -delete
exit 0
# EOF