blob: df7e56e6d43d37123d0b5e8902358baef8e2fbd0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
#!/bin/sh
##
##
## Copyright (C) 1996 by Henry Kilmer.
## All rights reserved.
##
## This software may be freely copied, modified and redistributed without
## fee for non-commerical purposes provided that this copyright notice is
## preserved intact on all copies and modified copies.
##
## 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.
##
##
#
# Create all of the misc files & dirs needed.
#
# create_cvs
#
# Read in the environment
ENVFILE="`dirname $0`/env"
. $ENVFILE
# Base dir
if [ ! -d $BASEDIR ]; then
mkdir -p $BASEDIR
fi
cd $BASEDIR
# Top level CVS stuff
if [ ! -d $CVSROOT ]; then
cvs init
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
cvs import -m "$GROUP" $GROUP new rancid
cd $BASEDIR
cvs co $GROUP
fi
cd $DIR
if [ ! -d configs ]; then
mkdir configs
cvs add configs
cvs commit -m 'new' configs
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
cvs add router.db
cvs commit -m 'new' router.db
fi
done
|