]> git.openstreetmap.org Git - chef.git/blob - cookbooks/otrs/templates/default/dbconfig.config.erb
otrs: Add otrs::debian for installing otrs via deb package
[chef.git] / cookbooks / otrs / templates / default / dbconfig.config.erb
1 # DO NOT EDIT - This file is being maintained by Chef
2
3 # dbc_install: configure database with dbconfig-common?
4 #              set to anything but "true" to opt out of assistance
5 dbc_install='true'
6
7 # dbc_upgrade: upgrade database with dbconfig-common?
8 #              set to anything but "true" to opt out of assistance
9 dbc_upgrade='true'
10
11 # dbc_remove: deconfigure database with dbconfig-common?
12 #             set to anything but "true" to opt out of assistance
13 dbc_remove='false'
14
15 # dbc_dbtype: type of underlying database to use
16 #       this exists primarily to let dbconfig-common know what database
17 #       type to use when a package supports multiple database types.
18 #       don't change this value unless you know for certain that this
19 #       package supports multiple database types
20 dbc_dbtype='pgsql'
21
22 # dbc_dbuser: database user
23 #       the name of the user who we will use to connect to the database.
24 dbc_dbuser='<%= @database_user %>'
25
26 # dbc_dbpass: database user password
27 #       the password to use with the above username when connecting
28 #       to a database, if one is required
29 dbc_dbpass='<%= @database_password %>'
30
31 # dbc_dballow: allowed host to connect from
32 #       only for database types that support specifying the host from
33 #       which the database user is allowed to connect from
34 #       this string defines for which host the dbc_dbuser is allowed
35 #       to connect
36 #       this value is only really used again when you reconfigure the
37 #       package
38 dbc_dballow='localhost'
39
40 # dbc_dbserver: database host.
41 #       leave unset to use localhost (or a more efficient local method
42 #       if it exists).
43 dbc_dbserver='localhost'
44
45 # dbc_dbport: remote database port
46 #       leave unset to use the default.  only applicable if you are
47 #       using a remote database.
48 dbc_dbport=''
49
50 # dbc_dbname: name of database
51 #       this is the name of your application's database.
52 dbc_dbname='<%= @database_name %>'
53
54 # dbc_dbadmin: name of the administrative user
55 #       this is the administrative user that is used to create all of the above
56 #       The exception is the MySQL/MariaDB localhost case, where this value is
57 #       ignored and instead is determined from /etc/mysql/debian.cnf.
58 dbc_dbadmin='postgres'
59
60 # dbc_basepath: base directory to hold database files
61 #       leave unset to use the default.  only applicable if you are
62 #       using a local (filesystem based) database.
63 dbc_basepath=''
64
65 ##
66 ## postgresql specific settings.  if you don't use postgresql,
67 ## you can safely ignore all of these
68 ##
69
70 # dbc_ssl: should we require ssl?
71 #       set to "true" to require that connections use ssl
72 dbc_ssl=''
73
74 # dbc_authmethod_admin: authentication method for admin
75 # dbc_authmethod_user: authentication method for dbuser
76 #       see the section titled "AUTHENTICATION METHODS" in
77 #       /usr/share/doc/dbconfig-common/README.pgsql for more info
78 dbc_authmethod_admin='ident'
79 dbc_authmethod_user='password'
80
81 ##
82 ## end postgresql specific settings
83 ##