#!/bin/sh
#************************************************************************
#   Entity Id		: $Id$
#   Package		: cvs-1.11
#   Synopsis		:
#   Purpose		: 
#
#   Date of Creation	: Mar 12, 2001
#   Version Number	: $Revision$
#   Last Updated	: $Date$
#
#   Author		: Stephen Rasku
#   Notes		:
#
#       Modify the variables at the start of the script to match your
#       environment.  This script assumes that your CVSROOT is set to
#       an existing repository.
#
#************************************************************************

CVSIMPORT=$HOME/work/cvs-1.11
CVS=cvs
OWD=`pwd`
MODULE=cvs-admin-test
VENDORTAG=vendor1
NEWVENDORTAG=vendor2

cd $CVSIMPORT
$CVS import -m "Testing admin bug" $MODULE $VENDORTAG release-1
cd $OWD
$CVS co $MODULE
cd $MODULE
echo '$Id$' > foo
$CVS add foo
$CVS ci -m "Added foo"
$CVS admin -n$NEWVENDORTAG:$VENDORTAG 
