aboutsummaryrefslogtreecommitdiff
path: root/templates/deploy.sh.erb
blob: 2c7f7890d78dc832695383cf2f8448c7be9f25e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/bin/bash
#
# Deploy an ikiwiki instance.
#

# Parameters
NAME="$1"
OWNER="$2"
GROUP="$3"
INSTANCE="ikiwiki"
CONF="/etc/ikiwiki"
BASE="<%= scope.lookupvar('ikiwiki::sites_folder') %>"
REPO_OWNER="<%= scope.lookupvar('ikiwiki::git_implementation') %>"
REPO="<%= scope.lookupvar('ikiwiki::git_folder') %>/$NAME.git"
REMOTE="$REPO_OWNER@localhost:$NAME"
SITE=$BASE/$NAME
CWD="`pwd`"

# Syntax check
if [ -z "$INSTANCE" ]; then
  echo "Usage:`basename $0` <site> <instance>"
  exit 1
elif [ ! -e "$CONF/$NAME.setup" ]; then
  echo "No config file for $NAME"
  exit 1
fi

# Setup source folder
mkdir -p $SITE/"$INSTANCE"_src_tmp/
rm -rf $SITE/"$INSTANCE"_src

# Create initial page
echo "Welcome to your new wiki powered by [ikiwiki](http://ikiwiki.info)." > $SITE/"$INSTANCE"_src_tmp/index.mdwn

# Create ikiwiki repository
ikiwiki-makerepo git $SITE/"$INSTANCE"_src_tmp $REPO

# Clone it again
git clone $REPO $SITE/"$INSTANCE"_src

# Fix remotes

cd $SITE/"$INSTANCE"_src
git remote rm origin
git remote add origin $REMOTE
git config branch.master.remote origin
git config branch.master.merge refs/heads/master
cd $CWD

# Cleanup
rm -rf $SITE/"$INSTANCE"_src_tmp