head	1.2;
access;
symbols
	TIGRIS_1_1_0RC2:1.2
	TIGRIS_1_1_0RC1:1.2
	TIGRIS_1_1:1.2.0.4
	TIGRIS_1_0_8:1.2
	TIGRIS_1_0_8RC3:1.2
	TIGRIS_1_0_8RC2:1.2
	TIGRIS_1_0_8RC1:1.2
	TIGRIS_1_0_7:1.2
	TIGRIS_1_0_7RC3:1.2
	TIGRIS_1_0_7RC2:1.2
	TIGRIS_1_0_7RC1:1.2
	TIGRIS_1_0_6:1.2
	TIGRIS_1_0_6RC5:1.2
	TIGRIS_1_0_6RC4:1.2
	TIGRIS_1_0_6RC3:1.2
	TIGRIS_1_0_6RC2:1.2
	TIGRIS_1_0_6RC1:1.2
	TIGRIS_1_0_5:1.2
	TIGRIS_1_0_5RC6:1.2
	TIGRIS_1_0_5RC5:1.2
	TIGRIS_1_0_5RC4:1.2
	TIGRIS_1_0_5RC3:1.2
	TIGRIS_1_0_5RC2:1.2
	TIGRIS_1_0_5RC1:1.2
	TIGRIS_1_0_4:1.2
	TIGRIS_1_0_3:1.2
	TIGRIS_1_0_2:1.2
	TIGRIS_1_0_1:1.2
	TIGRIS_1_0:1.2.0.6
	TIGRIS_1_0_0:1.2
	TIGRIS_1_0_0_RC1:1.2.0.2
	dlr:1.1.1
	TIGRIS_0_9_2_4:1.1.1.1.6.1
	TIGRIS_0_9_2_3:1.1.1.1.6.1
	HELM_PEER_PORT_BRANCH:1.1.1.2
	TURBINE_PEER:1.2
	TIGRIS_0_9_2_1:1.2
	TIGRIS_0_9_2:1.1.1.1.0.6
	TIGRIS_0_9_0:1.1.1.1.0.4
	TIGRIS_0_8_4:1.1.1.1.0.2
	NEWHELM:1.1.1.1
	TIGRIS_NOV_12_2000:1.1.1;
locks; strict;
comment	@# @;


1.2
date	2001.01.22.19.46.00;	author thom;	state Exp;
branches;
next	1.1;

1.1
date	2000.11.12.21.17.44;	author dlr;	state Exp;
branches
	1.1.1.1;
next	;

1.1.1.1
date	2000.11.12.21.17.44;	author dlr;	state Exp;
branches
	1.1.1.1.6.1;
next	1.1.1.2;

1.1.1.2
date	2001.02.21.00.36.24;	author dlr;	state Exp;
branches;
next	;

1.1.1.1.6.1
date	2001.01.22.23.01.45;	author thom;	state Exp;
branches;
next	;


desc
@@


1.2
log
@remove the unfolding of a tarball into the newly created repository directory.
PR: 2038
Obtained from:
Submitted by:	thom
Reviewed by:
@
text
@#!/bin/sh

mysql_cmd="mysql -u${DATABASE_USER} -p${DATABASE_PASSWORD}"
helm_script_data="${SANDBOX}/helm/scripts/script_data"
repository_root="${SANDBOX}/data/helm/cvs/repository"
tmp_file=/tmp/pop_repos.$$

${mysql_cmd} ${DATABASE_NAME} <<EOF  >${tmp_file}
select NAME as ''
  from HELM_PROJECT
  where HELM_PROJECT.TYPE = "base"
  ;
EOF

for project in `cat ${tmp_file}` ;
do
    if [ ! -d ${repository_root}/${project} ]; then
       echo constructing ${project}
       mkdir ${repository_root}/${project}
    fi
done

rm -f ${tmp_file}

@


1.1
log
@Initial revision
@
text
@d19 1
a19 5
        mkdir ${repository_root}/${project}
        if [ -d ${repository_root}/${project} ]; then
            cat ${helm_script_data}/test_repository.tar |\
            ( cd ${repository_root}/${project} ; tar xvf - )
        fi
@


1.1.1.1
log
@Merging newhelm tree into helm, as per IZ issue #557.  Previous major version of helm is tagged TIGRIS_NOV_11_2000.
@
text
@@


1.1.1.2
log
@Replacing the HEAD with the HELM_PEER_PORT_BRANCH.
@
text
@d19 5
a23 1
       mkdir ${repository_root}/${project}
@


1.1.1.1.6.1
log
@remove the unfolding of a tarball into the newly created repository directory.
PR: 2038
Obtained from:
Submitted by:	thom
Reviewed by:
@
text
@d20 4
@

