Parent Directory
|
Revision Log
- do not store password in clear in the svn
1 | class bugzilla { |
2 | |
3 | package { bugzilla |
4 | ensure => installed; |
5 | } |
6 | |
7 | $password = extlookup("bugzilla_password") |
8 | file { '/etc/bugzilla/localconfig': |
9 | ensure => present, |
10 | owner => root, |
11 | group => root, |
12 | mode => 644, |
13 | content => template("bugzilla/localconfig") |
14 | } |
15 | |
16 | } |
17 |
ViewVC Help | |
Powered by ViewVC 1.1.30 |