chiark / gitweb /
Domain keys support.
[zones] / Makefile
index b8dbcb794c57e3bcfbfe6f3f0101daf986570e6d..d4b3669b64fbb72571313040992d3accf07e4628 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -17,9 +17,20 @@ V_AT_0                        = @
 ###--------------------------------------------------------------------------
 ### Programs and options.
 
 ###--------------------------------------------------------------------------
 ### Programs and options.
 
+## Zone checking.
 CHECKZONE               = named-checkzone -i full \
                                -k fail -M fail -n fail -S fail -W fail
 
 CHECKZONE               = named-checkzone -i full \
                                -k fail -M fail -n fail -S fail -W fail
 
+## Zone installation.
+MASTER                  = localhost
+inside_MASTER           = precision
+
+ifeq ($(MASTER),localhost)
+ZONEINST                = userv zoneconf install
+else
+ZONEINST                = ssh zoneconf@$(MASTER)
+endif
+
 ###--------------------------------------------------------------------------
 ### Utility functions.
 
 ###--------------------------------------------------------------------------
 ### Utility functions.
 
@@ -50,23 +61,26 @@ ZONESETS             =
 
 ZONESETS               += distorted
 
 
 ZONESETS               += distorted
 
-distorted_VIEWS                 = inet fretwank
-distorted_inet_NETS     = inet
-distorted_fretwank_NETS         = fretwank
+distorted_VIEWS                 = inside outside
+distorted_outside_NETS  = dmz jump
+distorted_inside_NETS   = any unsafe colo vpn
 
 
-distorted_all_ZONES     = distorted.org.uk io.distorted.org.uk
-distorted_fretwank_ZONES = 199.29.172.in-addr.arpa
+distorted_all_ZONES    += distorted.org.uk
+distorted_all_ZONES    += 199.29.172.in-addr.arpa
 
 ###--------------------------------------------------------------------------
 
 ###--------------------------------------------------------------------------
-### The harlequin.org.uk zones.
-
-ZONESETS               += harlequin
+### Other zones.
 
 
-harlequin_VIEWS                 = inet fretwank
-harlequin_inet_NETS     = inet
-harlequin_fretwank_NETS         = fretwank
+## binswood.org.uk
+ZONESETS               += binswood
+binswood_VIEWS          = outside
+binswood_all_ZONES     += binswood.org.uk
+binswood_all_ZONES     += 27.165.10.in-addr.arpa
 
 
-harlequin_all_ZONES     = harlequin.org.uk
+## odin.gg
+ZONESETS               += odin
+odin_VIEWS              = outside
+odin_all_ZONES          = odin.gg
 
 ###--------------------------------------------------------------------------
 ### Zone construction machinery.
 
 ###--------------------------------------------------------------------------
 ### Zone construction machinery.
@@ -83,7 +97,8 @@ ALL_ZONESTAMPS = $(foreach s,$(ZONESETS), \
 $(ALL_ZONESTAMPS) : %.zonestamp : $$(notdir $$*).lisp hosts.lisp
        $(V_AT)mkdir -p $(dir $*)
        $(V_ZONE) -d$(dir $*) -fview/$(call dir-nosl,$*)$(hack \
 $(ALL_ZONESTAMPS) : %.zonestamp : $$(notdir $$*).lisp hosts.lisp
        $(V_AT)mkdir -p $(dir $*)
        $(V_ZONE) -d$(dir $*) -fview/$(call dir-nosl,$*)$(hack \
-               hack) $(addprefix -s, $($(notdir $*)_$(call dir-nosl,$*)_NETS)) $<
+               hack) $(addprefix -s, \
+               $($(notdir $*)_$(call dir-nosl,$*)_NETS)) $<
        $(V_AT)touch $@
 all: $(ALL_ZONESTAMPS)
 CLEANFILES += $(sort $(foreach s,$(ZONESETS), \
        $(V_AT)touch $@
 all: $(ALL_ZONESTAMPS)
 CLEANFILES += $(sort $(foreach s,$(ZONESETS), \
@@ -113,6 +128,17 @@ $(ALL_ZONECHECKS) : %.check : %.zone
 check: $(ALL_ZONECHECKS)
 .PHONY: check $(ALL_ZONECHECKS)
 
 check: $(ALL_ZONECHECKS)
 .PHONY: check $(ALL_ZONECHECKS)
 
+## Finally we have to install the zone files.
+ALL_INSTALLS = $(foreach s,$(ZONESETS), \
+       $(foreach v,$($s_VIEWS), \
+         $(foreach z,$($s_all_ZONES) $($s_$v_ZONES), \
+           $v/$z.inst)))
+$(ALL_INSTALLS) : %.inst : %.check
+       $(call v_tag,INST)$(ZONEINST) \
+               $(call dir-nosl,$*) $(notdir $*) <$*.zone
+install: $(ALL_INSTALLS)
+.PHONY: install $(ALL_INSTALLS)
+
 ## Files to clean.
 clean:
        rm -f $(CLEANFILES)
 ## Files to clean.
 clean:
        rm -f $(CLEANFILES)