dev/chroot-test/action/go
author David Douard <david.douard@logilab.fr>
Mon, 03 Nov 2014 11:12:45 +0100
changeset 372 80f78674c56e
parent 327 6f2a3f251d3b
permissions -rwxr-xr-x
Add support for phases This adds a "publish" permission level (between "init" and "write") required to be able to change the phase of a changeset from "draft" to "public". Update documentation accordingly. This is meant to be used for using the changeset evolution feature of mercurial, see http://evolution.experimentalworks.net/doc/

#!/bin/sh

set -e

cd action

ls -l

. ./testing_system
. ./env

#exec > results 2>&1

aptitude --allow-untrusted --quiet --without-recommends --assume-yes  install \
    openssh-server

perl -i -pe 's/^Port 22$/Port 2222/' /etc/ssh/sshd_config
/etc/init.d/ssh start
ssh-keyscan -t rsa,dsa,ecdsa -p 2222 localhost > /etc/ssh/ssh_known_hosts

. ./install-installables

for user in test1 test2 ; do
    adduser --gecos $user --disabled-password $user
    su -l -c 'mkdir .ssh' $user
    su -l -c 'ssh-keygen -N "" -f .ssh/id_rsa -t rsa' $user
done
cp /home/test1/.ssh/id_rsa.pub /etc/mercurial-server/keys/root/test1

su -l -c /action/refresh-auth hg
su -l -c /action/test1 test1
su -l -c /action/test2 test2

/etc/init.d/ssh stop

#touch results