2016-11-22 01:31:10 +08:00
|
|
|
#!/bin/bash
|
|
|
|
set -xe
|
|
|
|
|
|
|
|
# VARIABLES
|
|
|
|
BASEDIR=$(dirname "$0")
|
|
|
|
LOCAL_BRANCH=$(cd $BASEDIR && git rev-parse --abbrev-ref HEAD)
|
|
|
|
BRANCHES="master ansible-1.9"
|
2017-08-03 21:15:15 +08:00
|
|
|
ROLES="ceph-common ceph-mon ceph-osd ceph-mds ceph-rgw ceph-restapi ceph-agent ceph-fetch-keys ceph-rbd-mirror ceph-client ceph-docker-common ceph-mgr ceph-defaults"
|
2016-11-22 01:31:10 +08:00
|
|
|
|
|
|
|
|
|
|
|
# FUNCTIONS
|
2016-11-28 21:27:28 +08:00
|
|
|
function goto_basedir {
|
|
|
|
TOP_LEVEL=$(cd $BASEDIR && git rev-parse --show-toplevel)
|
|
|
|
if [[ "$(pwd)" != "$TOP_LEVEL" ]]; then
|
|
|
|
pushd $TOP_LEVEL
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2016-11-22 01:31:10 +08:00
|
|
|
function check_existing_remote {
|
|
|
|
if ! git remote show $1 &> /dev/null; then
|
|
|
|
git remote add $1 git@github.com:/ceph/ansible-$1.git
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
function pull_origin {
|
2016-11-28 22:12:40 +08:00
|
|
|
git pull origin master
|
2016-11-22 01:31:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
function reset_hard_origin {
|
|
|
|
# let's bring everything back to normal
|
|
|
|
git checkout $LOCAL_BRANCH
|
2016-12-19 17:05:44 +08:00
|
|
|
git fetch origin --prune
|
2016-11-22 01:31:10 +08:00
|
|
|
git fetch --tags
|
|
|
|
git reset --hard origin/master
|
|
|
|
}
|
|
|
|
|
|
|
|
function check_git_status {
|
|
|
|
if [[ $(git status --porcelain | wc -l) -gt 0 ]]; then
|
|
|
|
echo "It looks like the following changes haven't been committed yet"
|
|
|
|
echo ""
|
|
|
|
git status --short
|
|
|
|
echo ""
|
|
|
|
echo ""
|
|
|
|
echo "Do you really want to continue?"
|
|
|
|
echo "Press ENTER to continue or CTRL C to break"
|
|
|
|
read
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
# MAIN
|
2016-11-28 21:27:28 +08:00
|
|
|
goto_basedir
|
2016-11-22 01:31:10 +08:00
|
|
|
check_git_status
|
|
|
|
trap reset_hard_origin EXIT
|
|
|
|
trap reset_hard_origin ERR
|
|
|
|
pull_origin
|
|
|
|
|
|
|
|
for ROLE in $ROLES; do
|
|
|
|
# For readability we use 2 variables with the same content
|
|
|
|
# so we always make sure we 'push' to a remote and 'filter' a role
|
|
|
|
REMOTE=$ROLE
|
|
|
|
check_existing_remote $REMOTE
|
|
|
|
reset_hard_origin
|
|
|
|
# First we filter branches by rewriting master with the content of roles/$ROLE
|
|
|
|
# this gives us a new commit history
|
2016-12-19 17:05:44 +08:00
|
|
|
for BRANCH in $(git branch --list --remotes "origin/stable-*" "origin/master" "origin/ansible-1.9" | cut -d '/' -f2); do
|
2016-11-22 01:31:10 +08:00
|
|
|
git checkout -B $BRANCH origin/$BRANCH
|
|
|
|
git filter-branch -f --prune-empty --subdirectory-filter roles/$ROLE
|
2016-11-29 01:54:14 +08:00
|
|
|
git push -f $REMOTE $BRANCH
|
2016-11-22 01:31:10 +08:00
|
|
|
done
|
|
|
|
reset_hard_origin
|
|
|
|
# then we filter tags starting from version 2.0 and push them
|
|
|
|
for TAG in $(git tag | egrep '^v[2-9].[0-9]*.[0-9]*$'); do
|
|
|
|
git filter-branch -f --prune-empty --subdirectory-filter roles/$ROLE $TAG
|
2016-11-29 01:54:14 +08:00
|
|
|
git push -f $REMOTE $TAG
|
2016-11-22 01:31:10 +08:00
|
|
|
reset_hard_origin
|
|
|
|
done
|
|
|
|
done
|
2016-11-29 06:22:49 +08:00
|
|
|
trap - EXIT ERR
|
2016-11-28 21:27:28 +08:00
|
|
|
popd &> /dev/null
|