aboutsummaryrefslogtreecommitdiff
path: root/manifests/admin_node.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/admin_node.pp')
-rw-r--r--manifests/admin_node.pp14
1 files changed, 14 insertions, 0 deletions
diff --git a/manifests/admin_node.pp b/manifests/admin_node.pp
new file mode 100644
index 0000000..364a900
--- /dev/null
+++ b/manifests/admin_node.pp
@@ -0,0 +1,14 @@
+import "nodo"
+
+class admin_node {
+ nodo::vserver::instance { "$host-master":
+ context => '2',
+ puppetmaster => true,
+ }
+
+ host { "puppet":
+ ensure => present,
+ ip => "192.168.0.2",
+ host_aliases => [ "puppet.$domain", "admin" ],
+ }
+}