home · contact · privacy
For public server, set up htwtxt environment.
authorChristian Heller <c.heller@plomlompom.de>
Tue, 9 Feb 2016 23:51:04 +0000 (00:51 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Tue, 9 Feb 2016 23:51:04 +0000 (00:51 +0100)
dotfiles/minimal/vimrc_add
dotfiles/user/server/public/shinit_add [new file with mode: 0644]
jessie_postinstall.sh

index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..1dd08b643974b6e4fb9cd78612e96b09c001d566 100644 (file)
@@ -0,0 +1 @@
+source ~/.vimrc_vimgo
diff --git a/dotfiles/user/server/public/shinit_add b/dotfiles/user/server/public/shinit_add
new file mode 100644 (file)
index 0000000..6db1bac
--- /dev/null
@@ -0,0 +1,4 @@
+# Server-specific .shinit additions. 
+
+# Golang dev environment
+export GOPATH=~/gopath
index 29449cf5d8a5f6568df1e79a037453b1e06db1c7..9063f77743cd13428ab83f4c699ca9eeae1714f9 100755 (executable)
@@ -85,7 +85,7 @@ echo 'deb http://security.debian.org/ jessie/updates main contrib non-free' \
     >> /etc/apt/sources.list
 echo 'deb http://ftp.debian.org/debian/ jessie-updates main contrib non-free' \
     >> /etc/apt/sources.list
-if [ "$1" = "thinkpad" ]; then
+if [ "$1" = "thinkpad" || "$2" = "public" ]; then
     echo 'deb http://ftp.debian.org/debian/ jessie-backports main contrib' \
 ' non-free' >> /etc/apt/sources.list
     echo 'deb http://ftp.debian.org/debian/ testing main contrib non-free' \
@@ -214,6 +214,14 @@ if [ "$1" = "server" ]; then
 
         # Send instructions mail.
         config/bin/simplemail.sh config/mails/server_postinstall_finished
+
+    elif [ "$2" = "public" ]; then
+        # Set up twtxt environment.
+        apt-get -y -t jessie-backports install golang
+        su plom -c 'git clone '\
+            'https://github.com/plomlompom/htwtxt $GOPATH/src/htwtxt'
+        su plom -c 'go get htwtxt'
+        su plom -c 'mkdir ~/htwtxt'
     fi
 
 elif [ "$1" = "thinkpad" ]; then