blob: 9ab367e44f52b21375101293b20714eaf58b3ef9 (
plain)
- #!/bin/sh
- # Origin: http://ikiwiki.info/setup/
- set -e
- host=$1
- [ -z "$host" ] && echo "ERROR: Hostname must be supplied!" && exit 1
- SRCDIR=~/private_webdata/"$host"/content
- DESTDIR=~/public_websites/"$host"
- mkdir -p $SRCDIR
- cat <<EOF >$SRCDIR/index.mdwn
- Welcome to your new wiki.
- All wikis are supposed to have a <a href="../sandbox/">SandBox</a>,
- so this one does too.
- ----
- This wiki is powered by [ikiwiki](http://ikiwiki.info).
- EOF
- ikiwiki --verbose $SRCDIR $DESTDIR --url=http://"$host"
|