diff options
author | Colin Guthrie <colin@mageia.org> | 2013-08-20 23:52:10 +0000 |
---|---|---|
committer | Colin Guthrie <colin@mageia.org> | 2013-08-20 23:52:10 +0000 |
commit | 1d81a40636fb8949d72c31c59dd2e78b39c2afd3 (patch) | |
tree | abef199b8226ffb4ad91719481daaf329342393e /modules | |
parent | 9f8b63f4adc2f7f81d8048227e184e45ff9be69d (diff) | |
download | puppet-1d81a40636fb8949d72c31c59dd2e78b39c2afd3.tar puppet-1d81a40636fb8949d72c31c59dd2e78b39c2afd3.tar.gz puppet-1d81a40636fb8949d72c31c59dd2e78b39c2afd3.tar.bz2 puppet-1d81a40636fb8949d72c31c59dd2e78b39c2afd3.tar.xz puppet-1d81a40636fb8949d72c31c59dd2e78b39c2afd3.zip |
Switch the pkgsubmit website from an svn checkout to a git clone
Diffstat (limited to 'modules')
-rw-r--r-- | modules/buildsystem/manifests/var/webstatus.pp | 6 | ||||
-rw-r--r-- | modules/buildsystem/manifests/webstatus.pp | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/modules/buildsystem/manifests/var/webstatus.pp b/modules/buildsystem/manifests/var/webstatus.pp index 993390db..c3891d9e 100644 --- a/modules/buildsystem/manifests/var/webstatus.pp +++ b/modules/buildsystem/manifests/var/webstatus.pp @@ -1,5 +1,5 @@ -# $svn_url: -# svn url where the sources of webstatus are located +# $git_url: +# git url where the sources of webstatus are located # $hostname: # vhost name of the webstatus page # $location: @@ -14,7 +14,7 @@ # path of the directory where the themes are located. If you want # to use a theme not included in webstatus, you need to change this. class buildsystem::var::webstatus( - $svn_url = "svn://svn.mageia.org/soft/build_system/web/", + $git_url = "git://git.mageia.org/web/pkgsubmit", $hostname = "pkgsubmit.$::domain", $location = '/var/www/bs', $package_commit_url, diff --git a/modules/buildsystem/manifests/webstatus.pp b/modules/buildsystem/manifests/webstatus.pp index 065f8326..41538dd9 100644 --- a/modules/buildsystem/manifests/webstatus.pp +++ b/modules/buildsystem/manifests/webstatus.pp @@ -30,8 +30,8 @@ class buildsystem::webstatus { content => template('buildsystem/vhost_webstatus.conf'), } - subversion::snapshot { $buildsystem::var::webstatus::location: - source => $buildsystem::var::webstatus::svn_url, + git::snapshot { $buildsystem::var::webstatus::location: + source => $buildsystem::var::webstatus::git_url, } file { '/etc/bs-webstatus.conf': |