#!/bin/bash #------------------------------------------------------------------------------ # Copyright (c) Perforce Software, Inc., 2007-2015. All rights reserved # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are met: # # 1 Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL PERFORCE # SOFTWARE, INC. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR # TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF # THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH # DAMAGE. #------------------------------------------------------------------------------ export P4INSTANCE=${P4INSTANCE:-Undefined} export P4INSTANCE=${1:-$P4INSTANCE} if [[ $P4INSTANCE == 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 $P4INSTANCE . /p4/common/bin/backup_functions.sh LOGFILE=$LOGS/edge_shelf_replicate.log STATUS="OK: Shelves replicated." declare -i EXIT_CODE=0 P4="$P4BIN -p $P4PORT -u $P4USER" /p4/common/bin/p4login # Print shelved files on Edge replica. for d in `$P4 -s depots|grep "^info: Depot " |\ grep -v --perl-regexp "^info: Depot \S+ \d{4}\/\d{2}\/\d{2} (remote|archive|unload) " |\ cut -d ' ' -f 3`; do echo === Started replication of //$d/... at $(date). >> $LOGFILE echo Running $P4 changes -s shelved //$d/... >> $LOGFILE $P4 changes -s shelved //$d/... | cut -d " " -f 2 | while read cl;do echo Running $P4 print //$d/...@=$cl >> $LOGFILE $P4 print //$d/...@=$cl > /dev/null done if [[ $? -ne 0 ]]; then STATUS="Error: Replication failed. Review the log [$LOGFILE]." EXIT_CODE=1 fi done echo Edge replication complated at $(date). >> $LOGFILE mail_log_file "$HOSTNAME $P4SERVER Edge shelf replication Log ($STATUS)" exit $EXIT_CODE
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#5 | 20767 | C. Thomas Tyler |
Released SDP 2016.2.20755 (2016/09/29). Copy Up using 'p4 copy -r -b perforce_software-sdp-dev'. |
||
#4 | 15856 | C. Thomas Tyler |
Replaced the big license comment block with a shortened form referencing the LICENSE file included with the SDP package, and also by the URL for the license file in The Workshop. |
||
#3 | 15777 | C. Thomas Tyler |
No functional changes. Style Policing only on bash scripts only. Normalized indentation and line breaks, removed offending tabs, and general whitespace usage. |
||
#2 | 13908 | C. Thomas Tyler | Pushing SDP 2015.1.13906. | ||
#1 | 12171 | Russell C. Jackson (Rusty) | Merge in changes to remove the need for p4master_run. | ||
//guest/perforce_software/sdp/dev/Server/Unix/p4/common/bin/edge_shelf_replicate.sh | |||||
#1 | 12169 | Russell C. Jackson (Rusty) |
Updated copyright date to 2015 Updated shell scripts to require an instance parameter to eliminate the need for calling p4master_run. Python and Perl still need it since you have to set the environment for them to run in. Incorporated comments from reviewers. Left the . instead of source as that seems more common in the field and has the same functionality. |