diff options
Diffstat (limited to 'deployment/websites')
-rw-r--r-- | deployment/websites/manifests/doc.pp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/deployment/websites/manifests/doc.pp b/deployment/websites/manifests/doc.pp index 63ba9d45..a9f62afe 100644 --- a/deployment/websites/manifests/doc.pp +++ b/deployment/websites/manifests/doc.pp @@ -2,7 +2,7 @@ class websites::doc { include websites::base $vhost = "doc.$::domain" $vhostdir = "$websites::base::webdatadir/$vhost" - $svn_location = "svn://svn.$::domain/svn/web/doc/" + $git_location = "git://git.$::domain/web/doc" apache::vhost::base { $vhost: location => $vhostdir, @@ -14,7 +14,7 @@ class websites::doc { location => $vhostdir, } - subversion::snapshot { $vhostdir: - source => $svn_location, + git::snapshot { $vhostdir: + source => $git_location, } } |