From b49984e7700c2cb597c18d57e7cd8be4cfedabc3 Mon Sep 17 00:00:00 2001
From: Christian Heller <c.heller@plomlompom.de>
Date: Mon, 8 Feb 2016 01:54:26 +0100
Subject: [PATCH] Postinstall script: For public server, set up go and htwtxt.

---
 jessie_postinstall.sh | 12 ++++++++++++
 1 file changed, 12 insertions(+)

diff --git a/jessie_postinstall.sh b/jessie_postinstall.sh
index 29449cf..1fd9085 100755
--- a/jessie_postinstall.sh
+++ b/jessie_postinstall.sh
@@ -214,6 +214,18 @@ if [ "$1" = "server" ]; then
 
         # Send instructions mail.
         config/bin/simplemail.sh config/mails/server_postinstall_finished
+    elif [ "$2" = "public" ]; then
+        apt-get -y install sudo
+        adduser plom sudo
+        su plom -c '~/config/setup_go.sh '\
+            'https://storage.googleapis.com/golang/go1.5.3.linux-amd64.tar.gz'
+        su plom -c 'git clone '\
+            'https://github.com/plomlompom/htwtxt $GOPATH/src/htwtxt'
+        su plom -c 'go get htwtxt'
+        su plom -c 'mkdir ~/htwtxt'
+        su plom -c 'cp -R $GOPATH/src/htwtxt/templates ~/htwtxt'
+        deluser plom sudo
+        apt-get -y --purge autoremove sudo
     fi
 
 elif [ "$1" = "thinkpad" ]; then
-- 
2.30.2