]> git.openstreetmap.org Git - chef.git/commitdiff
Add rols for clifford and ascalon
authorTom Hughes <tom@compton.nu>
Mon, 3 Feb 2014 20:15:15 +0000 (20:15 +0000)
committerTom Hughes <tom@compton.nu>
Mon, 3 Feb 2014 20:15:15 +0000 (20:15 +0000)
roles/ascalon.rb [new file with mode: 0644]
roles/clifford.rb [new file with mode: 0644]

diff --git a/roles/ascalon.rb b/roles/ascalon.rb
new file mode 100644 (file)
index 0000000..9b6ecd0
--- /dev/null
@@ -0,0 +1,19 @@
+name "ascalon"
+description "Master role applied to ascalon"
+
+default_attributes(
+  :networking => {
+    :interfaces => {
+      :internal_ipv4 => {
+        :interface => "eth0",
+        :role => :internal,
+        :family => :inet,
+        :address => "10.0.0.18"
+      }
+    }
+  }
+)
+
+run_list(
+  "role[ucl-internal]"
+)
diff --git a/roles/clifford.rb b/roles/clifford.rb
new file mode 100644 (file)
index 0000000..b13d8d1
--- /dev/null
@@ -0,0 +1,19 @@
+name "clifford"
+description "Master role applied to clifford"
+
+default_attributes(
+  :networking => {
+    :interfaces => {
+      :internal_ipv4 => {
+        :interface => "eth0",
+        :role => :internal,
+        :family => :inet,
+        :address => "10.0.0.17"
+      }
+    }
+  }
+)
+
+run_list(
+  "role[ucl-internal]"
+)