aboutsummaryrefslogtreecommitdiffstats
path: root/deployment/websites
diff options
context:
space:
mode:
authorColin Guthrie <colin@mageia.org>2014-06-15 11:15:16 +0100
committerColin Guthrie <colin@mageia.org>2014-06-15 11:23:05 +0100
commit5c4f659f12be74d1fcadab5bd3362842985541e9 (patch)
tree3e17473f7a891db9796e624ec9229d3c29be94ab /deployment/websites
parent70ae1f5dd513bb6899d2d20233f045b86e47a2dd (diff)
downloadpuppet-5c4f659f12be74d1fcadab5bd3362842985541e9.tar
puppet-5c4f659f12be74d1fcadab5bd3362842985541e9.tar.gz
puppet-5c4f659f12be74d1fcadab5bd3362842985541e9.tar.bz2
puppet-5c4f659f12be74d1fcadab5bd3362842985541e9.tar.xz
puppet-5c4f659f12be74d1fcadab5bd3362842985541e9.zip
websites: Switch doc.mageia.org hosting to git.
Diffstat (limited to 'deployment/websites')
-rw-r--r--deployment/websites/manifests/doc.pp6
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,
}
}