#! /bin/sh ## ## $Id: rancid-cvs.in,v 1.19 2006/10/05 04:27:43 heas Exp $ ## ## @PACKAGE@ @VERSION@ ## Copyright (C) 1997-2006 by Terrapin Communications, Inc. ## All rights reserved. ## ## This software may be freely copied, modified and redistributed ## without fee for non-commerical purposes provided that this license ## remains intact and unmodified with any RANCID distribution. ## ## There is no warranty or other guarantee of fitness of this software. ## It is provided solely "as is". The author(s) disclaim(s) all ## responsibility and liability with respect to this software's usage ## or its effect upon hardware, computer systems, other software, or ## anything else. ## ## Except where noted otherwise, rancid was written by and is maintained by ## Henry Kilmer, John Heasley, Andrew Partan, Pete Whiting, and Austin Schutz. ## # # Create all of the misc files & dirs needed for each group and import them # into CVS or Subversion. # # rancid-cvs # # Read in the environment ENVFILE="@sysconfdir@/rancid.conf" # print a usage message to stderr pr_usage() { echo "usage: $0 [-V] [group [group ...]]" >&2; } # command-line options # -V print version string if [ $# -ge 1 ] ; then while [ 1 ] ; do case $1 in -V) echo "@PACKAGE@ @VERSION@" exit 0 ;; -*) echo "unknown option: $1" >&2 pr_usage exit 1 ;; *) break; ;; esac done fi . $ENVFILE # Base dir if [ ! -d $BASEDIR ]; then mkdir -p $BASEDIR || (echo "Could not create local state directory: $BASEDIR"; exit 1) fi cd $BASEDIR # RCS system RCSSYS=${RCSSYS:=cvs}; case $RCSSYS in cvs | svn ) # we're good ;; git ) # force $CVSROOT CVSROOT=$BASEDIR/.git ;; * ) echo "$RCSSYS is not a valid value for RCSSYS." exit 1 ;; esac # Top level CVS stuff if [ ! -d $CVSROOT ]; then case $RCSSYS in cvs ) cvs -d $CVSROOT init ;; svn ) svnadmin create $CVSROOT ;; git ) # git does not use $CVSROOT, instead configs are stored in $BASEDIR ( flock -x 200 git init rm -f .gitignore echo "/logs" >> .gitignore echo "/.lockfile" >> .gitignore echo "*~" >> .gitignore echo ".#*" >> .gitignore echo "*.new" >> .gitignore git add .gitignore git commit -m "Initializing repository." ) 200>$BASEDIR/.lockfile esac fi # Log dir if [ ! -d logs ]; then mkdir logs fi # Which groups to do if [ $# -ge 1 ] ; then LIST_OF_GROUPS="$*"; export LIST_OF_GROUPS elif [ "$LIST_OF_GROUPS" = "" ] ; then echo "LIST_OF_GROUPS is empty in $ENVFILE" exit 1 fi for GROUP in `echo $LIST_OF_GROUPS` ; do DIR=$BASEDIR/$GROUP # Directory for the group and the configs if [ ! -d $DIR ]; then mkdir -p $DIR cd $DIR case $RCSSYS in cvs ) cvs import -m "$GROUP" $GROUP new rancid cd $BASEDIR cvs checkout $GROUP ;; svn ) svn import -m "$GROUP" . file://$CVSROOT/$GROUP cd $BASEDIR svn checkout file://$CVSROOT/$GROUP $GROUP ;; git ) cd $BASEDIR echo "$GROUP/routers.all" >> .gitignore echo "$GROUP/routers.down" >> .gitignore echo "$GROUP/routers.up" >> .gitignore echo "$GROUP/routers.mail" >> .gitignore echo "$GROUP/routers.added" >> .gitignore echo "$GROUP/routers.deleted" >> .gitignore echo "$GROUP/routers.single" >> .gitignore echo "$GROUP/routers.up.missed" >> .gitignore echo "$GROUP/routers.failed" >> .gitignore ( flock -x 200 git add .gitignore git commit -m "Update .gitignore" ) 200>$BASEDIR/.lockfile ;; esac fi cd $DIR if [ ! -d configs ]; then mkdir configs case $RCSSYS in cvs | svn ) $RCSSYS add configs $RCSSYS commit -m 'new' configs ;; git ) # nothing to be done here ;; esac fi # main files if [ ! -f routers.all ]; then touch routers.all fi if [ ! -f routers.down ]; then touch routers.down fi if [ ! -f routers.up ]; then touch routers.up fi if [ ! -f router.db ]; then touch router.db case $RCSSYS in cvs | svn ) $RCSSYS add router.db $RCSSYS commit -m 'new' router.db ;; git ) ( flock -x 200 git add router.db git commit -m "Initializing $GROUP" ) 200>$BASEDIR/.lockfile ;; esac fi done