Per https://en.wikipedia.org/wiki/Master/slave_(technology)#Terminology_concerns the use of "master" and "slave" is considered offsensive in some circles. This is a followup for https://gerrit-review.googlesource.com/c/gerrit/+/238661 to also rename "master" to "primary" and "multi-master" to "cluster setup with multiple primary nodes". Also fix a few remaining occurrences of "slave" to "replica". Change-Id: I8cd73220e2428d78dcd8205fbd826b4ebdcb2372
		
			
				
	
	
		
			79 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			79 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
#
 | 
						|
# Copyright (C) 2017 The Android Open Source Project
 | 
						|
#
 | 
						|
# Licensed under the Apache License, Version 2.0 (the "License");
 | 
						|
# you may not use this file except in compliance with the License.
 | 
						|
# You may obtain a copy of the License at
 | 
						|
#
 | 
						|
# http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
#
 | 
						|
# Unless required by applicable law or agreed to in writing, software
 | 
						|
# distributed under the License is distributed on an "AS IS" BASIS,
 | 
						|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 | 
						|
# See the License for the specific language governing permissions and
 | 
						|
# limitations under the License.
 | 
						|
# --------------------------------------------------------
 | 
						|
# Install this hook script as post-receive hook in replicated repositories
 | 
						|
# hosted by a gerrit replica which are updated by push replication from the
 | 
						|
# corresponding gerrit primary node.
 | 
						|
#
 | 
						|
# In the gerrit primary node configure the replication plugin to push changes from
 | 
						|
# refs/changes/ to refs/tmp/changes/
 | 
						|
#   remote.NAME.push = +refs/changes/*:refs/tmp/changes/*
 | 
						|
#   remote.NAME.push = +refs/heads/*:refs/heads/*
 | 
						|
#   remote.NAME.push = +refs/tags/*:refs/tags/*
 | 
						|
# And if it's a Gerrit mirror:
 | 
						|
#   remote.NAME.push = +refs/meta/*:refs/meta/*
 | 
						|
#
 | 
						|
# In the replicated repository in the gerrit replica configure
 | 
						|
#    receive.hideRefs = refs/changes/
 | 
						|
# in order to not advertise the big number of refs in this namespace when
 | 
						|
# the gerrit primary's replication plugin is pushing a change
 | 
						|
#
 | 
						|
# Whenever a ref under refs/tmp/changes/ is arriving this hook will move it
 | 
						|
# to refs/changes/. This helps to avoid the large overhead of advertising all
 | 
						|
# refs/changes/ refs to the gerrit primary when it replicates changes to the
 | 
						|
# replica.
 | 
						|
#
 | 
						|
# Make this script executable then link to it in the repository you would like
 | 
						|
# to use it in.
 | 
						|
#   cd /path/to/your/repository.git
 | 
						|
#   ln -sf <shared hooks directory>/post-receive-move-tmp-refs hooks/post-receive
 | 
						|
#
 | 
						|
# If you want to use this by default for repositories on the Gerrit replica you
 | 
						|
# can set up a git template directory $TEMPLATE_DIR/hooks/post-receive and
 | 
						|
# configure init.templateDir in the ~/.gitconfig of the user that receives the
 | 
						|
# replication on the mirror host. That way when a new repository is created on
 | 
						|
# the primary and hence on the mirror (if configured that way) it will
 | 
						|
# automatically have the "tmp-refs" commit hook installed.
 | 
						|
# See https://git-scm.com/docs/git-init#_template_directory for details.
 | 
						|
 | 
						|
# move new changes arriving under refs/tmp/changes/ to refs/changes/
 | 
						|
mv_tmp_refs()
 | 
						|
{
 | 
						|
	oldrev=$1
 | 
						|
	newrev=$2
 | 
						|
	refname=$3
 | 
						|
	case "$refname" in refs/tmp/changes/*)
 | 
						|
			short_refname=${refname##refs/tmp/changes/}
 | 
						|
			$(git update-ref refs/changes/$short_refname $newrev 2>/dev/null)
 | 
						|
			$(git update-ref -d $refname $newrev 2>/dev/null)
 | 
						|
			echo "moved \"$refname\" to \"refs/changes/$short_refname\""
 | 
						|
			;;
 | 
						|
	esac
 | 
						|
	return 0
 | 
						|
}
 | 
						|
 | 
						|
GIT_DIR=$(git rev-parse --git-dir 2>/dev/null)
 | 
						|
if [ -z "$GIT_DIR" ]; then
 | 
						|
	echo >&2 "fatal: post-receive: GIT_DIR not set"
 | 
						|
	exit 1
 | 
						|
fi
 | 
						|
 | 
						|
# read ref updates passed to post-receive hook
 | 
						|
while read oldrev newrev refname
 | 
						|
do
 | 
						|
	mv_tmp_refs $oldrev $newrev $refname || continue
 | 
						|
done
 |