chiark / gitweb /
hosts.lisp, distorted.lisp: artist is on the untrusted network.
[zones] / Makefile
index 17fa80ff5cce9f5781bee90ae672e64bcf5f095b..eda4119623a1f48c3ba76453e5cf92f8e3204ed7 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -17,9 +17,21 @@ V_AT_0                        = @
 ###--------------------------------------------------------------------------
 ### Programs and options.
 
+## Zone checking.
 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.
 
@@ -51,22 +63,30 @@ ZONESETS             =
 ZONESETS               += distorted
 
 distorted_VIEWS                 = inside outside
-distorted_outside_NETS  = dmz
-distorted_inside_NETS   = unsafe
+distorted_outside_NETS  = dmz jump
+distorted_inside_NETS   = any unsafe colo vpn
 
-distorted_all_ZONES     = distorted.org.uk io.distorted.org.uk
-distorted_inside_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.
+### Other zones.
 
+## harlequin.org.uk
 ZONESETS               += harlequin
+harlequin_VIEWS                 = outside
+harlequin_all_ZONES     = harlequin.org.uk
 
-harlequin_VIEWS                 = inside outside
-harlequin_outside_NETS  = dmz
-harlequin_inside_NETS   = unsafe
+## felixpearce.com
+ZONESETS               += felixpearce
+felixpearce_VIEWS       = outside
+felixpearce_all_ZONES   = felixpearce.com
 
-harlequin_all_ZONES     = harlequin.org.uk
+## binswood.org.uk
+ZONESETS               += binswood
+binswood_VIEWS          = outside
+binswood_all_ZONES     += binswood.org.uk
+binswood_all_ZONES     += 27.165.10.in-addr.arpa
 
 ###--------------------------------------------------------------------------
 ### Zone construction machinery.
@@ -83,7 +103,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 \
-               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), \
@@ -113,6 +134,17 @@ $(ALL_ZONECHECKS) : %.check : %.zone
 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)