aboutsummaryrefslogtreecommitdiffstats
path: root/modules/buildsystem/manifests
diff options
context:
space:
mode:
authorNicolas Vigier <boklm@mageia.org>2013-05-23 15:07:35 +0000
committerNicolas Vigier <boklm@mageia.org>2013-05-23 15:07:35 +0000
commit8b103496e498d80de66305f364d3c9ff6cd1af9c (patch)
tree56a5364caf2bc36e5d8f8f51104eec87cba8fd4d /modules/buildsystem/manifests
parentb7ad1c5f9dd244a7756ad691735a2e2d648f7920 (diff)
downloadpuppet-8b103496e498d80de66305f364d3c9ff6cd1af9c.tar
puppet-8b103496e498d80de66305f364d3c9ff6cd1af9c.tar.gz
puppet-8b103496e498d80de66305f364d3c9ff6cd1af9c.tar.bz2
puppet-8b103496e498d80de66305f364d3c9ff6cd1af9c.tar.xz
puppet-8b103496e498d80de66305f364d3c9ff6cd1af9c.zip
buildsystem: create config file for webstatus
Create /etc/bs-webstatus.conf config file using new parameters from buildsystem::var::webstatus.
Diffstat (limited to 'modules/buildsystem/manifests')
-rw-r--r--modules/buildsystem/manifests/var/webstatus.pp12
-rw-r--r--modules/buildsystem/manifests/webstatus.pp8
2 files changed, 19 insertions, 1 deletions
diff --git a/modules/buildsystem/manifests/var/webstatus.pp b/modules/buildsystem/manifests/var/webstatus.pp
index 371db756..1d5ca526 100644
--- a/modules/buildsystem/manifests/var/webstatus.pp
+++ b/modules/buildsystem/manifests/var/webstatus.pp
@@ -4,9 +4,19 @@
# 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.
+# $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'
+ $location = '/var/www/bs',
+ $package_commit_url,
+ $theme_name = 'mageia',
+ $themes_dir = '/var/www/bs/themes/'
) {
}
diff --git a/modules/buildsystem/manifests/webstatus.pp b/modules/buildsystem/manifests/webstatus.pp
index b2607e07..2a871b26 100644
--- a/modules/buildsystem/manifests/webstatus.pp
+++ b/modules/buildsystem/manifests/webstatus.pp
@@ -18,4 +18,12 @@ class buildsystem::webstatus {
subversion::snapshot { $buildsystem::var::webstatus::location:
source => $buildsystem::var::webstatus::svn_url,
}
+
+ file { '/etc/bs-webstatus.conf':
+ ensure => present,
+ content => template('buildsystem/bs-webstatus.conf'),
+ mode => 0644,
+ owner => root,
+ group => root,
+ }
}