]> git.openstreetmap.org Git - chef.git/blobdiff - roles/gateway.rb
Add basic en.openstreetmap.town redirect service
[chef.git] / roles / gateway.rb
index 80ae347a5c414f585e8ca8f643952d774b62e80e..d842bf41268e418e7f2c4f56da167a3388c5c26c 100644 (file)
@@ -2,20 +2,15 @@ name "gateway"
 description "Role applied to all network gateways"
 
 default_attributes(
-  :networking => {
-    :wireguard => { :enabled => true }
-  },
   :sysctl => {
     :network_forwarding => {
       :comment => "Enable forwarding",
       :parameters => { "net.ipv4.ip_forward" => "1" }
     }
-  },
-  :exim => {
-    :relay_from_hosts => ["10.0.0.0/8"]
   }
 )
 
 run_list(
-  "recipe[bind]"
+  "recipe[bind]",
+  "recipe[prometheus::smokeping]"
 )