summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrenton Leanhardt <bleanhar@redhat.com>2008-07-08 17:56:44 -0400
committerBrenton Leanhardt <bleanhar@redhat.com>2008-07-09 13:45:31 -0400
commit975a0f53df3261cbd795958c9d3e663f00ebce73 (patch)
treeb9dcdaaf283ad7f308904aec346c33e3b0607bb2
parentae5f2d91866784b13311ecf99f6efbd9aab996f2 (diff)
downloadpuppet-repo_extentions-975a0f53df3261cbd795958c9d3e663f00ebce73.tar.gz
puppet-repo_extentions-975a0f53df3261cbd795958c9d3e663f00ebce73.tar.xz
puppet-repo_extentions-975a0f53df3261cbd795958c9d3e663f00ebce73.zip
Everest was renamed to Genome
-rw-r--r--files/machine_types.rb7
-rw-r--r--manifests/init.pp6
2 files changed, 6 insertions, 7 deletions
diff --git a/files/machine_types.rb b/files/machine_types.rb
index 716d049..8d5ff8d 100644
--- a/files/machine_types.rb
+++ b/files/machine_types.rb
@@ -21,7 +21,7 @@
# One thing to note is the special syntax allowed when setting default values #
# for facts. In the default string you are allowed to use "%repo%" or #
# "%machine_name%" which will get substituted appropriately whenever this data #
-# is used (eg, everest-bootstrap uses this for setting context aware default #
+# is used (eg, genome-bootstrap uses this for setting context aware default #
# values for facts). #
# #
# If a fact needs to be on all machines types set ":on_all_nodes" #
@@ -39,8 +39,7 @@
# set_desc "The machine to send syslog output to"
# end
-
-newfact("everestrepo", :on_all_nodes => true) do
+newfact("repoappliance", :on_all_nodes => true) do
set_desc "The Everest Repo Appliance this machine should use for " +
"configuration and bit provisioning"
end
@@ -59,6 +58,6 @@ end
# "apache::ssl", "apache::ajp_http","apache::ajp_devel",
# end
-newmachine("jboss-dev") do
+newmachine("django-example") do
set_classes "django::server"
end
diff --git a/manifests/init.pp b/manifests/init.pp
index fc5e74e..9830c30 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -1,10 +1,10 @@
-class everest::repo {
- file { "/etc/everest/machine_types.rb":
+class genomerepo::appliance {
+ file { "/etc/genome/machine_types.rb":
ensure => present,
owner => "root",
group => "root",
mode => 0644,
source => "puppet:///repo_extensions/machine_types.rb",
- notify => Service["everestd"],
+ notify => Service["genomed"],
}
}