summaryrefslogtreecommitdiffstats
path: root/manifests
diff options
context:
space:
mode:
Diffstat (limited to 'manifests')
-rw-r--r--manifests/init.pp8
1 files changed, 8 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp
index 0a68a48..d60d794 100644
--- a/manifests/init.pp
+++ b/manifests/init.pp
@@ -1,3 +1,5 @@
+import "git"
+
class django::server {
package { ["httpd", "Django", "mod_python"]:
ensure => installed,
@@ -17,6 +19,12 @@ class django::server {
require => [Package["httpd"],Package["mod_python"]],
notify => Service["httpd"],
}
+
+ git::repo { "django-code-repo":
+ src => "/pub/git/sd/intranet/everest_django",
+ dst => "/usr/local/everest_django",
+ require => [Package["httpd"], Package["Django"]],
+ }
}