aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/websites/manifests
diff options
context:
space:
mode:
authorColin Guthrie <colin@mageia.org>2014-06-15 11:13:51 +0100
committerColin Guthrie <colin@mageia.org>2014-06-15 11:23:05 +0100
commit70ae1f5dd513bb6899d2d20233f045b86e47a2dd (patch)
tree7098390479f4cc396efe588c4ac94f141b3a23d0 /deployment/websites/manifests
parentdec8f44c8646c3c01ef4265691d2ba894706c1c5 (diff)
downloadpuppet-70ae1f5dd513bb6899d2d20233f045b86e47a2dd.tar
puppet-70ae1f5dd513bb6899d2d20233f045b86e47a2dd.tar.gz
puppet-70ae1f5dd513bb6899d2d20233f045b86e47a2dd.tar.bz2
puppet-70ae1f5dd513bb6899d2d20233f045b86e47a2dd.tar.xz
puppet-70ae1f5dd513bb6899d2d20233f045b86e47a2dd.zip
websites: Switch archives.mageia.org hosting to git.
Diffstat (limited to 'deployment/websites/manifests')
-rw-r--r--deployment/websites/manifests/archives.pp6
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,
}
}