31 lines
1.1 KiB
Bash
Executable File
31 lines
1.1 KiB
Bash
Executable File
# Purge ADR contents (adr_purge.sh)
|
|
# 00 05 * * 0 adr_purge.sh
|
|
# Add the above line with `crontab -e` to the oracle user's cron
|
|
|
|
ALERT_RET="129600" # 90 Days
|
|
INCIDENT_RET="43200" # 30 Days
|
|
TRACE_RET="43200" # 30 Days
|
|
CDUMP_RET="43200" # 30 Days
|
|
HM_RET="43200" # 30 Days
|
|
|
|
echo "INFO: adrci purge started at `date`"
|
|
adrci exec="show homes"|grep -v 'ADR Homes' | while read file_line
|
|
do
|
|
echo "INFO: adrci purging diagnostic destination " $file_line
|
|
echo "INFO: purging ALERT older than 90 days"
|
|
adrci exec="set homepath $file_line;purge -age $ALERT_RET -type ALERT"
|
|
echo "INFO: purging INCIDENT older than 30 days"
|
|
adrci exec="set homepath $file_line;purge -age $INCIDENT_RET -type INCIDENT"
|
|
echo "INFO: purging TRACE older than 30 days"
|
|
adrci exec="set homepath $file_line;purge -age $TRACE_RET -type TRACE"
|
|
echo "INFO: purging CDUMP older than 30 days"
|
|
adrci exec="set homepath $file_line;purge -age $CDUMP_RET -type CDUMP"
|
|
echo "INFO: purging HM older than 30 days"
|
|
adrci exec="set homepath $file_line;purge -age $HM_RET -type HM"
|
|
echo ""
|
|
echo ""
|
|
done
|
|
echo
|
|
echo "INFO: adrci purge finished at `date`"
|
|
|