--- /dev/null
+#!/bin/sh
+
+# Detect if ikikwiki is already installed
+if [ ! -e /etc/ikiwiki/ikiwiki.setup ]; then
+ # copy ikiwiki config
+ fcopy -v /etc/ikiwiki/ikiwiki.setup
+
+ # run setup
+ $ROOTCMD ikiwiki --setup /etc/ikiwiki/ikiwiki.setup/DEFAULT
+fi
--- /dev/null
+#!/bin/sh
+
+$ROOTCMD mkdir /srv/git # create the git source directory
+
+$ROOTCMD mv /root/gluestick.git /srv/git/ # move the git source to the new directory
+$ROOTCMD mv /root/public_html/gluestick /var/www/html # move the public html files to the var location
+$ROOTCMD mv /root/gluestick /srv/ # move the source into location
+
+