aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--deployment/websites/manifests/nav.pp6
1 files changed, 3 insertions, 3 deletions
diff --git a/deployment/websites/manifests/nav.pp b/deployment/websites/manifests/nav.pp
index 587abe0d..b5da04de 100644
--- a/deployment/websites/manifests/nav.pp
+++ b/deployment/websites/manifests/nav.pp
@@ -2,7 +2,7 @@ class websites::nav {
include websites::base
$vhost = "nav.$::domain"
$vhostdir = "$websites::base::webdatadir/$vhost"
- $svn_location = "svn://svn.$::domain/svn/web/nav/"
+ $git_location = "git://git.$::domain/web/nav"
apache::vhost::base { $vhost:
location => $vhostdir,
@@ -14,7 +14,7 @@ class websites::nav {
location => $vhostdir,
}
- subversion::snapshot { $vhostdir:
- source => $svn_location,
+ git::snapshot { $vhostdir:
+ source => $git_location,
}
}