summaryrefslogtreecommitdiffstats
path: root/manifests
diff options
context:
space:
mode:
authorBrenton Leanhardt <bleanhar@redhat.com>2008-07-01 13:20:27 -0400
committerBrenton Leanhardt <bleanhar@redhat.com>2008-07-01 13:20:27 -0400
commitae5f2d91866784b13311ecf99f6efbd9aab996f2 (patch)
tree06cbd1498ce4e77fca50b24e2d8938fa3cff0073 /manifests
downloadpuppet-repo_extentions-ae5f2d91866784b13311ecf99f6efbd9aab996f2.tar.gz
puppet-repo_extentions-ae5f2d91866784b13311ecf99f6efbd9aab996f2.tar.xz
puppet-repo_extentions-ae5f2d91866784b13311ecf99f6efbd9aab996f2.zip
Repo extensions for the django example
Diffstat (limited to 'manifests')
-rw-r--r--manifests/init.pp10
1 files changed, 10 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
new file mode 100644
index 0000000..fc5e74e
--- /dev/null
+++ b/manifests/init.pp
@@ -0,0 +1,10 @@
+class everest::repo {
+ file { "/etc/everest/machine_types.rb":
+ ensure => present,
+ owner => "root",
+ group => "root",
+ mode => 0644,
+ source => "puppet:///repo_extensions/machine_types.rb",
+ notify => Service["everestd"],
+ }
+}