660fad954a
make the arguments optional (with documented defaults) plus they need not exist a priori, reducing one command (the silly mkdir!) that the user has to run. All this is preparatory to deprecating the from-client method. We've even switched the test suite to 'non-root' method now
56 lines
1.6 KiB
Bash
Executable file
56 lines
1.6 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
|
|
export TESTDIR=$PWD
|
|
|
|
# prepare local ssh
|
|
mkdir -p $HOME/.ssh; chmod go-rx $HOME/.ssh
|
|
[ -f "$HOME/.ssh/id_rsa" ] || ssh-keygen -q -N "" -t rsa -f $HOME/.ssh/id_rsa
|
|
|
|
# blank out the client side
|
|
rm -rf ~/gitolite-admin
|
|
# make sure we have the u1-u6 keys and the config to refer to them
|
|
cp $TESTDIR/keys/config ~/.ssh
|
|
cp $TESTDIR/keys/u[1-6]* ~/.ssh
|
|
chmod 755 ~/.ssh ~/.ssh/config ~/.ssh/*pub
|
|
chmod 600 ~/.ssh/u?
|
|
|
|
# blank out the server side
|
|
echo the next command MAY ask for a password
|
|
ssh gitolite-test@localhost rm -rf .ssh .gitolite .gitolite.rc repositories /tmp/glrb bin share
|
|
echo the next command SHOULD ask for a password
|
|
ssh-copy-id -i ~/.ssh/id_rsa gitolite-test@localhost
|
|
echo the next command should NOT ask for a password
|
|
scp ~/.ssh/tester.pub gitolite-test@localhost:
|
|
|
|
# install it
|
|
echo installing whatever is here now...
|
|
# ../src/gl-easy-install -q gitolite-test localhost tester
|
|
cat <<EOF | ssh gitolite-test@localhost
|
|
cd gitolite
|
|
git describe --tags --long HEAD > conf/VERSION
|
|
src/gl-system-install
|
|
cd
|
|
gl-setup -q tester.pub
|
|
EOF
|
|
echo =============================
|
|
echo
|
|
echo
|
|
echo
|
|
|
|
# add 6 keys
|
|
rm -rf ~/gitolite-admin
|
|
cd
|
|
git clone gitolite:gitolite-admin
|
|
cd ~/gitolite-admin
|
|
cp $TESTDIR/keys/u*pub keydir
|
|
git add keydir; git commit -m 'added 6 keys'
|
|
git push
|
|
|
|
# make the rollback.tar files on both sides
|
|
cd
|
|
tar cf rollback.tar gitolite-admin
|
|
ssh gitolite-test@localhost mkdir -p repositories /tmp/glrb
|
|
ssh gitolite-test@localhost tar cf rollback.tar .ssh .gitolite .gitolite.rc repositories bin share
|
|
ssh gitolite-test@localhost tar -C /tmp -cf \$HOME/rollback2.tar glrb
|