Subversion Repositories ALCASAR

Rev

Rev 1217 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log

Rev Author Line No. Line
1214 crox53 1
#!/bin/bash
2
 
3
NOW=$(date +%G%m%d)
4
DIR_SAVE="var/Save/logs/firwall/"
5
DIR_LOG="/var/log/nfsen/profiles-data/live/ipt_netflow"
6
DIR_SAVE="/var/Save/logs/firewall"
7
EXPIRE_DELAY=7
8
 
9
cd $DIR_SAVE
1217 crox53 10
find $DIR_LOG -mtime $EXPIRE_DELAY -name 'nfcapd.*' | xargs tar -czf tracability.log-$NOW.tar.gz;
1214 crox53 11
 
12
exit 0