aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2021-04-04 20:24:56 +0200
committerJonas Smedegaard <dr@jones.dk>2021-04-04 20:24:56 +0200
commitc5c68e81fa126fbb2dc548148b31d92ba56c6ada (patch)
tree191195c5132b3d06ab0df6f576161db32719ccd6 /Makefile
parent4c9b1ef537d819e0d78cd0c152fd16cab1be6e67 (diff)
handle eventhost
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 27aa983..7438af3 100644
--- a/Makefile
+++ b/Makefile
@@ -3,6 +3,7 @@
-include site.mk
domain ?= example.org
+eventhost ?= event.$(domain)
shellhost ?= shell.$(domain)
githost ?= source.$(domain)
gitshellhost ?= $(shellhost)
@@ -14,7 +15,7 @@ MUSTACHE = cat source/source/USE.md | perl -MText::Hogan::Compiler -0777 -nE '\
my $$compiler = Text::Hogan::Compiler->new;\
my $$template = $$compiler->compile($$_);\
say $$template->render({ \
- domain => "$(domain)", shellhost => "$(shellhost)", githost => "$(githost)", gitshellhost => "$(gitshellhost)", \
+ domain => "$(domain)", eventhost => "$(eventhost)", shellhost => "$(shellhost)", githost => "$(githost)", gitshellhost => "$(gitshellhost)", \
matrixhost => "$(matrixhost)", \
organisation => "$(organisation)", contact_sysadmins => "$(contact_sysadmins)" })'