action/go
changeset 266 7cc208cbf2be
parent 265 6629144cf111
child 267 4f24892b33fe
--- a/action/go	Tue Dec 01 12:37:20 2009 +0000
+++ b/action/go	Tue Dec 01 15:31:03 2009 +0000
@@ -10,10 +10,30 @@
 
 #exec > results 2>&1
 
-echo "It worked"
+#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
+
+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
+
+cd mercurial-server
+make setup-adduser
 
-aptitude --allow-untrusted --quiet --without-recommends --assume-yes  install mercurial
-hg --version
+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
 
-touch results
+/etc/init.d/ssh stop
 
+#touch results
+