#!/bin/sh
# Version 00.00.03
# fuehrt logrotate zum loeschen/verkleinern der NGINX-Logdateien aus
# Mobilfunk log
# wpa supplicant


/usr/bin/logger -s "logrotate NGINX"
/usr/sbin/logrotate -v -f /etc/logrotate.d/nginx

/usr/bin/logger -s "logrotate MOBILE.LOG"
/usr/sbin/logrotate -v -f /etc/logrotate.d/mobile

/usr/bin/logger -s "logrotate WPA_SUPPLICANT.*.LOG"
/usr/sbin/logrotate -v -f /etc/logrotate.d/wpa_supplicant

exit $?

