blob: 993390db4309e17abea47687b6be462c614ce2c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# $svn_url:
# svn url where the sources of webstatus are located
# $hostname:
# vhost name of the webstatus page
# $location:
# path of the directory where the webstatus files are located
# $package_commit_url:
# url to view a commit on a package. %d is replaced by the commit id.
# $max_modified:
# how much history should we display, in days
# $theme_name:
# name of the webstatus theme
# $themes_dir:
# 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/",
$hostname = "pkgsubmit.$::domain",
$location = '/var/www/bs',
$package_commit_url,
$max_modified = '2',
$theme_name = 'mageia',
$themes_dir = '/var/www/bs/themes/'
) {
}
|