blob: 0428db29f17995720092840c4b4fe5a6d6772fc3 [file] [log] [blame]
Jason M. Bills9cbd07c2020-05-05 16:27:39 -07001#!/bin/sh
2
3while true; do
4 sleep 60
Zbigniew Kurzynskie4b51dc2022-04-11 18:00:30 +02005 /usr/sbin/logrotate /etc/logrotate.d/*.rsyslog
Jason M. Bills9cbd07c2020-05-05 16:27:39 -07006 ec=$?
7 if [ $ec -ne 0 ] ; then
8 echo "logrotate failed ($ec)"
9 fi
10done