diff options
author | drebs <drebs@riseup.net> | 2011-03-19 12:27:05 -0300 |
---|---|---|
committer | drebs <drebs@riseup.net> | 2011-03-19 12:27:05 -0300 |
commit | 13203a28257422df18f5d96ad4897e27d32cbdd4 (patch) | |
tree | 52111300798d6fda5be9f8f59caa4ed5ca506599 /manifests | |
parent | 606dabe0b582b21d6ccdf1d749442b3fc11a3024 (diff) | |
download | puppet-bootstrap-13203a28257422df18f5d96ad4897e27d32cbdd4.tar.gz puppet-bootstrap-13203a28257422df18f5d96ad4897e27d32cbdd4.tar.bz2 |
grouping classes in one dir
Diffstat (limited to 'manifests')
-rw-r--r-- | manifests/classes/admin_node.pp (renamed from manifests/admin_node.pp) | 0 | ||||
-rw-r--r-- | manifests/classes/default_conf.pp (renamed from manifests/default_conf.pp) | 0 | ||||
-rw-r--r-- | manifests/classes/firewall.pp (renamed from manifests/firewall.pp) | 0 | ||||
-rw-r--r-- | manifests/classes/puppet_bootstrap.pp (renamed from manifests/puppet_bootstrap.pp) | 0 | ||||
-rw-r--r-- | manifests/classes/puppetmasterd.pp (renamed from manifests/puppetmasterd.pp) | 0 | ||||
-rw-r--r-- | manifests/classes/users.pp (renamed from manifests/users.pp) | 0 | ||||
-rw-r--r-- | manifests/host-stage1.pp | 6 | ||||
-rw-r--r-- | manifests/stage0.pp | 2 |
8 files changed, 4 insertions, 4 deletions
diff --git a/manifests/admin_node.pp b/manifests/classes/admin_node.pp index 22b08fd..22b08fd 100644 --- a/manifests/admin_node.pp +++ b/manifests/classes/admin_node.pp diff --git a/manifests/default_conf.pp b/manifests/classes/default_conf.pp index d1ef7c5..d1ef7c5 100644 --- a/manifests/default_conf.pp +++ b/manifests/classes/default_conf.pp diff --git a/manifests/firewall.pp b/manifests/classes/firewall.pp index 750fdc6..750fdc6 100644 --- a/manifests/firewall.pp +++ b/manifests/classes/firewall.pp diff --git a/manifests/puppet_bootstrap.pp b/manifests/classes/puppet_bootstrap.pp index d0517f7..d0517f7 100644 --- a/manifests/puppet_bootstrap.pp +++ b/manifests/classes/puppet_bootstrap.pp diff --git a/manifests/puppetmasterd.pp b/manifests/classes/puppetmasterd.pp index 5aaebb7..5aaebb7 100644 --- a/manifests/puppetmasterd.pp +++ b/manifests/classes/puppetmasterd.pp diff --git a/manifests/users.pp b/manifests/classes/users.pp index a7aba1b..a7aba1b 100644 --- a/manifests/users.pp +++ b/manifests/classes/users.pp diff --git a/manifests/host-stage1.pp b/manifests/host-stage1.pp index e026255..9feed97 100644 --- a/manifests/host-stage1.pp +++ b/manifests/host-stage1.pp @@ -1,8 +1,8 @@ import "config.pp" import "nodo" -import "admin_node.pp" -import "firewall.pp" -import "users.pp" +import "classes/admin_node.pp" +import "classes/firewall.pp" +import "classes/users.pp" include nodo::server diff --git a/manifests/stage0.pp b/manifests/stage0.pp index 675340a..b148933 100644 --- a/manifests/stage0.pp +++ b/manifests/stage0.pp @@ -1,5 +1,5 @@ import "config.pp" -import "puppet_bootstrap.pp" +import "classes/puppet_bootstrap.pp" # setup modules for use with other stages include puppet_bootstrap |