3a8f32ac9b
- fork was not printing a newline after the permissions - "add_del_line" to properly handle that damn projects.list file!
30 lines
801 B
Bash
Executable file
30 lines
801 B
Bash
Executable file
#!/bin/sh
|
|
|
|
from=$1
|
|
to=$2
|
|
|
|
. $(dirname $0)/adc.common-functions
|
|
|
|
get_rights_and_owner $from
|
|
[ -z "$perm_read" ] && die "no read permissions on $from"
|
|
|
|
get_rights_and_owner $to
|
|
[ -z "$perm_create" ] && die "no create permissions on $to"
|
|
|
|
# clone $from to $to
|
|
git clone --bare -l $GL_REPO_BASE_ABS/$from.git $GL_REPO_BASE_ABS/$to.git
|
|
[ $? -ne 0 ] && exit 1
|
|
|
|
# fix up creator, gitweb owner, and hooks
|
|
cd $GL_REPO_BASE_ABS/$to.git
|
|
echo $GL_USER > gl-creater
|
|
git config gitweb.owner "$GL_USER"
|
|
( cd $HOME;perl -le 'do ".gitolite.rc"; print $GL_WILDREPOS_DEFPERMS' ) |
|
|
SSH_ORIGINAL_COMMAND="setperms $to" $GL_BINDIR/gl-auth-command $GL_USER
|
|
cp -R $GL_REPO_BASE_ABS/$from.git/hooks/* $GL_REPO_BASE_ABS/$to.git/hooks
|
|
|
|
if [ -n "$GL_WILDREPOS_DEFPERMS" ]; then
|
|
echo "$GL_WILDREPOS_DEFPERMS" > gl-perms
|
|
fi
|
|
|