diff options
-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)" })' |