|
18 | 18 | # 2.) Modify the database settings below according to your setup |
19 | 19 | # |
20 | 20 | # Atlassian jira Git Enterprise Source Control Server |
21 | | -jira_name: jira |
22 | | -jira_version: 5.1.7 |
23 | | -jira_package_format: zip |
| 21 | +jira::jira_name: jira |
| 22 | +jira::jira_version: 5.1.7 |
| 23 | +jira::jira_package_format: tar.gz |
24 | 24 |
|
25 | 25 | # Directory where the webapp will run from |
26 | | -jira_install_dir: /opt/jira |
| 26 | +jira::jira_install_dir: /opt/jira |
27 | 27 | # If you can put this on another filesystem, and even better, a fs that's |
28 | 28 | # on another physical disk, you will be happier, but not required |
29 | | -jira_home_dir: /opt/jira-home |
| 29 | +jira::jira_home_dir: /opt/jira-home |
| 30 | +# What user should jira run as |
| 31 | +# Puppet will make the user |
| 32 | +jira::user: jira |
| 33 | +jira::group: jira |
30 | 34 |
|
31 | 35 | # Database configuration - please change these according to your setup |
32 | 36 | # Comment out or uncomment for your db product as this value is also |
33 | 37 | # overloaded as the jdbc driver db |
34 | | -jira_db: postgresql |
35 | | -#jira_db: mysql |
36 | | -#jira_db: oracle |
| 38 | +jira::jira_db: postgresql |
| 39 | +#jira::jira_db: mysql |
| 40 | +#jira::jira_db: oracle |
37 | 41 |
|
38 | | -jira_dbtype: postgres72 |
| 42 | +jira::jira_dbtype: postgres72 |
39 | 43 | #jira_dbtype: mysql |
40 | 44 |
|
41 | | -jira_dbdriver: org.postgresql.Driver |
| 45 | +jira::jira_dbdriver: org.postgresql.Driver |
42 | 46 | #jira_dbdriver: com.mysql.jdbc.Driver |
43 | 47 |
|
44 | 48 | # Change these values to your jira database credentials |
45 | | -jira_dbuser: jiraadm |
46 | | -jira_dbpassword: jiraadm |
| 49 | +jira::jira_dbuser: jiraadm |
| 50 | +jira::jira_dbpassword: jiraadm |
47 | 51 |
|
48 | | -jira_dbname: jira |
| 52 | +jira::jira_dbname: jira |
49 | 53 | # Change port depending on your db product |
50 | | -jira_dbport: 5432 |
51 | | -#jira_dbport: 3306 |
52 | | -#jira_dbport: 1521 |
| 54 | +jira::jira_dbport: 5432 |
| 55 | +#jira::jira_dbport: 3306 |
| 56 | +#jira::jira_dbport: 1521 |
| 57 | + |
| 58 | +# The connection pool size |
| 59 | +jira::poolsize: 15 |
53 | 60 |
|
54 | 61 | # Change if your database isn't on localhost. This module will only check |
55 | 62 | # to make sure that the service is running and start it if it is not on |
56 | 63 | # localhost db's only. So if your remote database, which is suggested, isn't |
57 | 64 | # available, that's your fault. |
58 | | -jira_dbserver: localhost |
| 65 | +jira::jira_dbserver: localhost |
59 | 66 |
|
60 | 67 | # Tomcat configuration |
61 | 68 | # TODO because I'm never a fan of the stock tomcat settings |
62 | | -jira_javahome: /opt/java/jdk1.6.0_33 |
63 | | -jira_jvm_xmx: 1024m |
64 | | -jira_jvm_optional: -XX:-HeapDumpOnOutOfMemoryError |
| 69 | +jira::jira_javahome: /opt/java/jdk1.6.0_33 |
| 70 | +jira::jira_jvm_xmx: 1024m |
| 71 | +jira::jira_jvm_optional: -XX:-HeapDumpOnOutOfMemoryError |
65 | 72 | #jira_jvm_optional: -XX:NewSize=256m -XX:MaxNewSize=256m -XX:SurvivorRatio=16 |
66 | 73 | # the New and SR figures are purely optional |
67 | 74 | # for heap dumps add -XX:-HeapDumpOnOutOfMemoryError |
68 | 75 | # by default jira has 256m permgen which is a good setting to go with |
| 76 | +jira::downloadURL: "http://www.atlassian.com/software/jira/downloads/binary/" |
0 commit comments