OXIESEC PANEL
- Current Dir:
/
/
etc
/
cron.daily
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/20/2025 05:23:23 PM
rwxr-xr-x
📄
.placeholder
102 bytes
11/16/2017 05:29:19 AM
rw-r--r--
📄
apache2
539 bytes
07/16/2019 06:14:45 PM
rwxr-xr-x
📄
apport
376 bytes
11/20/2017 04:39:28 PM
rwxr-xr-x
📄
apt-compat
1.44 KB
04/20/2018 10:08:18 AM
rwxr-xr-x
📄
bsdmainutils
355 bytes
12/29/2017 09:02:08 AM
rwxr-xr-x
📄
dpkg
1.15 KB
11/02/2017 10:28:26 PM
rwxr-xr-x
📄
logrotate
372 bytes
08/21/2017 05:38:26 PM
rwxr-xr-x
📄
man-db
1.04 KB
04/07/2018 10:39:15 AM
rwxr-xr-x
📄
mdadm
539 bytes
01/30/2019 02:51:36 PM
rwxr-xr-x
📄
mlocate
538 bytes
03/01/2018 04:07:16 PM
rwxr-xr-x
📄
passwd
249 bytes
01/25/2018 03:09:22 PM
rwxr-xr-x
📄
popularity-contest
3.4 KB
02/21/2018 04:44:56 AM
rwxr-xr-x
📄
update-notifier-common
214 bytes
11/12/2018 03:57:28 PM
rwxr-xr-x
Editing: logrotate
Close
#!/bin/sh # Clean non existent log file entries from status file cd /var/lib/logrotate test -e status || touch status head -1 status > status.clean sed 's/"//g' status | while read logfile date do [ -e "$logfile" ] && echo "\"$logfile\" $date" done >> status.clean mv status.clean status test -x /usr/sbin/logrotate || exit 0 /usr/sbin/logrotate /etc/logrotate.conf