action/go
changeset 272 f7c64f03cd60
parent 271 c1ceab337505
child 273 7bae88583a53
--- a/action/go	Fri Dec 17 14:31:50 2010 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,45 +0,0 @@
-#!/bin/sh
-
-set -e
-
-cd action
-
-ls -l
-
-. ./testing_system
-
-#exec > results 2>&1
-
-#aptitude --allow-untrusted --quiet --without-recommends --assume-yes  install mercurial
-#hg --version
-
-aptitude --allow-untrusted --quiet --without-recommends --assume-yes  install \
-    make mercurial xsltproc docbook-xsl openssh-server \
-    python python-support adduser 
-
-#aptitude --allow-untrusted --quiet --without-recommends --assume-yes  install \
-#     debconf python python-support adduser mercurial 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
-
-#dpkg -i mercurial-server_1.0-1_all.deb
-cd mercurial-server
-make setup-adduser
-
-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 /usr/local/share/mercurial-server/refresh-auth hg
-su -l -c /action/test1 test1
-su -l -c /action/test2 test2
-
-/etc/init.d/ssh stop
-
-#touch results
-