forked from FreiFunkMuenster/site-ffms-old
-
Notifications
You must be signed in to change notification settings - Fork 0
/
prepare.sh
executable file
·42 lines (30 loc) · 1.19 KB
/
prepare.sh
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
#!/bin/sh
#
###############################################################################################
# Buildscript zur Erstellung der Images
#
# Dieses Script holt die passende Gluon-Version von GitHub und überträgt die Gluon-Konfiguration
#
# Das Script benötigt die folgenden Kommandozeilenparameter:
# - Gluon-Commit (z.B. v2014.4)
###############################################################################################
# Bei Ausführung auf dem Buildserver ist die Variable $WORKSPACE gesetzt
# andernfalls wird das aktuelle Verzeichnis verwendet
if [ "x$WORKSPACE" = "x" ]; then
WORKSPACE=`pwd`
fi
# Verzeichnis für Gluon-Repo erstellen und initialisieren
if [ ! -d "$WORKSPACE/gluon" ]; then
git clone https://github.com/freifunk-gluon/gluon.git $WORKSPACE/gluon
fi
# Gluon Repo aktualisieren
cd $WORKSPACE/gluon
git fetch
git checkout $1
# Dateien in das Gluon-Repo kopieren
# In der site.conf werden hierbei Umgebungsvariablen durch die aktuellen Werte ersetzt
if [ -d $WORKSPACE/gluon/site ]; then
rm -r $WORKSPACE/gluon/site
fi
mkdir $WORKSPACE/gluon/site
cp -r $WORKSPACE/site.mk $WORKSPACE/site.conf $WORKSPACE/modules $WORKSPACE/i18n $WORKSPACE/gluon/site