|
29 | 29 | # User that the service will run as |
30 | 30 | # @param group |
31 | 31 | # Group that the service will run as |
| 32 | +# @param installdir_owner |
| 33 | +# The owner of the installation directory. |
| 34 | +# @param installdir_group |
| 35 | +# The group of the installation directory. |
| 36 | +# @param installdir_mode |
| 37 | +# The permissions of the installation directory. Note that the JIRA service user must have at least execute permission on the directory. |
| 38 | +# @param homedir_mode |
| 39 | +# The permissions of the service user's home directory, where JIRA's data will reside |
32 | 40 | # @param uid |
33 | 41 | # The desired UID for the service user |
34 | 42 | # @param gid |
|
270 | 278 | Boolean $manage_user = true, |
271 | 279 | String $user = 'jira', |
272 | 280 | String $group = 'jira', |
| 281 | + String[1] $installdir_owner = 'root', |
| 282 | + String[1] $installdir_group = 'root', |
| 283 | + Stdlib::Filemode $installdir_mode = '0755', |
| 284 | + Optional[Stdlib::Filemode] $homedir_mode = undef, |
273 | 285 | Optional[Integer[0]] $uid = undef, |
274 | 286 | Optional[Integer[0]] $gid = undef, |
275 | 287 | Stdlib::Absolutepath $shell = '/bin/true', |
|
293 | 305 | Optional[String] $dburl = undef, |
294 | 306 | Optional[String] $connection_settings = undef, |
295 | 307 | Boolean $oracle_use_sid = true, |
296 | | - $dbschema = undef, |
| 308 | + Optional[String[1]] $dbschema = undef, |
297 | 309 | # MySQL Connector Settings |
298 | 310 | Boolean $mysql_connector_manage = true, |
299 | 311 | String $mysql_connector_version = '8.0.23', |
|
0 commit comments