summaryrefslogtreecommitdiffstats
path: root/manifests
diff options
context:
space:
mode:
authorJordan OMara <jomara@redhat.com>2008-06-27 09:51:12 -0400
committerJordan OMara <jomara@redhat.com>2008-06-27 09:52:51 -0400
commit65f622fc2d8920511c1897656ace129236db6dbd (patch)
tree977e750f6fc93590d95a6bc590ef2183748f6a61 /manifests
downloadpuppet-django-65f622fc2d8920511c1897656ace129236db6dbd.tar.gz
puppet-django-65f622fc2d8920511c1897656ace129236db6dbd.tar.xz
puppet-django-65f622fc2d8920511c1897656ace129236db6dbd.zip
Initial django module commit
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..b452528
--- /dev/null
+++ b/manifests/init.pp
@@ -0,0 +1,10 @@
+class django::server {
+ package { "httpd", "Django", "mod-python":
+ ensure => installed,
+ }
+
+ service { "httpd":
+ ensure => running,
+ require => Package["httpd"],
+ }
+}