diff options
Diffstat (limited to 'modules/bugzilla/manifests')
-rw-r--r-- | modules/bugzilla/manifests/init.pp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/bugzilla/manifests/init.pp b/modules/bugzilla/manifests/init.pp index 8ac06804..e767b386 100644 --- a/modules/bugzilla/manifests/init.pp +++ b/modules/bugzilla/manifests/init.pp @@ -1,5 +1,7 @@ class bugzilla { + $bugzilla_location = "/usr/share/bugzilla/template/en/custom" + package { 'bugzilla': ensure => installed; } @@ -33,3 +35,8 @@ class bugzilla { } } + subversion::snapshot { $bugzilla_location: + source => "svn://svn.mageia.org/svn/web/templates/bugzilla/trunk" + } + + |