#!/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 broker log file on an instance that only has the broker 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

. /p4/common/bin/p4_vars $SDP_INSTANCE
. /p4/common/bin/backup_functions.sh
LOGFILE=${LOGS}/broker_rotate.log

######### Start of Script ##########

export P4PORT=1666
check_vars
set_vars
check_uid
check_dirs
$P4CBIN/p4login
get_journalnum
rotate_last_run_logs
log "Start $P4SERVER broker log rotation."
check_disk_space
remove_old_logs
log "End $P4SERVER broker log rotation."
mail_log_file "$HOSTNAME $P4SERVER Daily broker log rotation."

