dev/chroot-test/action/go
author Dale Wijnand <dale.wijnand@gmail.com>
Thu, 20 Jan 2011 21:18:29 +0100
changeset 295 9741d82e5b1e
parent 283 01eca64f77ab
child 299 f41666a08b87
permissions -rwxr-xr-x
servelog: use simplejson and the % operator for python versions < 2.6 Both the json module and str format operator are new in version 2.6, so replace them with the simplejson module and the % operator, respectively.

#!/bin/sh

set -e

cd action

ls -l

. ./testing_system

#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 -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