From 975a0f53df3261cbd795958c9d3e663f00ebce73 Mon Sep 17 00:00:00 2001 From: Brenton Leanhardt Date: Tue, 8 Jul 2008 17:56:44 -0400 Subject: Everest was renamed to Genome --- files/machine_types.rb | 7 +++---- manifests/init.pp | 6 +++--- 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"], } } -- cgit