diff options
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': |