broker_rotate.sh #2

  • //
  • guest/
  • robert_cowham/
  • perforce/
  • sdp/
  • Server/
  • Unix/
  • p4/
  • common/
  • bin/
  • broker_rotate.sh
  • View
  • Commits
  • Open Download .zip Download (1 KB)
#!/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
rotate_last_run_logs
log "Start $P4SERVER broker log rotation."
check_uid
check_dirs
$P4CBIN/p4login
get_journalnum
check_disk_space
remove_old_logs
log "End $P4SERVER broker log rotation."
mail_log_file "$HOSTNAME $P4SERVER Daily broker log rotation."

# Change User Description Committed
#2 22142 Robert Cowham Merge in latest changes from Dev
#1 20726 Robert Cowham Catch up from dev
//guest/perforce_software/sdp/dev/Server/Unix/p4/common/bin/broker_rotate.sh
#2 20427 C. Thomas Tyler chmod +x broker_rotate.sh.

Done with: p4 edit -t +x broker_rotate.sh.

This is just a filetype tweak; there are no content changes.

#review-20428
#1 20221 Russell C. Jackson (Rusty) Script to rotate the broker log.