#!/bin/bash
#==============================================================================
# Copyright and license info is available in the LICENSE file included with
# the Server Deployment Package (SDP), and also available online:
# https://swarm.workshop.perforce.com/projects/perforce-software-sdp/view/main/LICENSE
#------------------------------------------------------------------------------
# This script rotates the proxy log file on an instance that only has the proxy running.
#
export SDP_INSTANCE=${SDP_INSTANCE:-Undefined}
export SDP_INSTANCE=${1:-$SDP_INSTANCE}
if [[ $SDP_INSTANCE == Undefined ]]; then
echo "Instance parameter not supplied."
echo "You must supply the Perforce instance as a parameter to this script."
exit 1
fi
# shellcheck disable=SC1091
source /p4/common/bin/p4_vars "$SDP_INSTANCE"
# shellcheck disable=SC1091
source /p4/common/bin/backup_functions.sh
export LOGFILE="${LOGS}/rotate_proxy.log"
######### Start of Script ##########
check_vars
set_vars
rotate_last_run_logs
log "Start $P4SERVER proxy log rotation."
check_uid
check_dirs 2
"$P4CBIN"/p4login
remove_old_logs
log "End $P4SERVER proxy log rotation."
mail_log_file "$HOSTNAME $P4SERVER Daily broker log rotation."
| # | Change | User | Description | Committed | |
|---|---|---|---|---|---|
| #3 | 30297 | C. Thomas Tyler |
Released SDP 2023.2.30295 (2024/05/08). Copy Up using 'p4 copy -r -b perforce_software-sdp-dev'. |
||
| #2 | 29891 | C. Thomas Tyler |
Released SDP 2023.1.29699 (2023/07/11). Copy Up using 'p4 copy -r -b perforce_software-sdp-dev'. |
||
| #1 | 29143 | C. Thomas Tyler |
Released SDP 2022.1.29141 (2022/10/29). Copy Up using 'p4 copy -r -b perforce_software-sdp-dev'. |
||
| //guest/perforce_software/sdp/dev/Server/Unix/p4/common/bin/proxy_rotate.sh | |||||
| #1 | 29099 | C. Thomas Tyler | Added log rotation for proxy-only host. | ||