]> git.openstreetmap.org Git - chef.git/commitdiff
Make sure shenron uses the correct network configuration
authorTom Hughes <tom@compton.nu>
Mon, 24 Oct 2016 13:07:04 +0000 (14:07 +0100)
committerTom Hughes <tom@compton.nu>
Mon, 24 Oct 2016 13:07:34 +0000 (14:07 +0100)
roles/shenron.rb

index 9323c23cecb51e13fcdf1609aa0c5adcfedcef65..84a38aa064586d3e115f56522876383085600fe2 100644 (file)
@@ -21,6 +21,21 @@ default_attributes(
       "it87"
     ]
   },
+  :openvpn => {
+    :address => "10.0.16.3",
+    :tunnels => {
+      :shenron2ucl => {
+        :port => "1194",
+        :mode => "server",
+        :peer => {
+          :host => "ridley.openstreetmap.org"
+        }
+      }
+    }
+  }
+)
+
+override_attributes(
   :networking => {
     :interfaces => {
       :external_ipv4 => {
@@ -40,18 +55,6 @@ default_attributes(
         :gateway => "fe80::1"
       }
     }
-  },
-  :openvpn => {
-    :address => "10.0.16.3",
-    :tunnels => {
-      :shenron2ucl => {
-        :port => "1194",
-        :mode => "server",
-        :peer => {
-          :host => "ridley.openstreetmap.org"
-        }
-      }
-    }
   }
 )