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