diff options
author | Jonas Smedegaard <dr@jones.dk> | 2021-04-04 20:24:56 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2021-04-04 20:24:56 +0200 |
commit | c5c68e81fa126fbb2dc548148b31d92ba56c6ada (patch) | |
tree | 191195c5132b3d06ab0df6f576161db32719ccd6 /Makefile | |
parent | 4c9b1ef537d819e0d78cd0c152fd16cab1be6e67 (diff) |
handle eventhost
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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)" })' |