File tree 2 files changed +11
-4
lines changed
2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -3556,6 +3556,11 @@ Specifies if the virtual host file is present or absent. Valid options: 'absent'
3556
3556
3557
3557
Sets the relative load order for Apache HTTPD VirtualHost configuration files. Default: '25'.
3558
3558
3559
+ ##### ` verify_config `
3560
+
3561
+ Specifies whether to validate the configuration file before notifying the Apache service. Valid options: Boolean. Default: true.
3562
+
3563
+
3559
3564
### Private defined types
3560
3565
3561
3566
#### Defined type: ` apache::peruser::multiplexer `
Original file line number Diff line number Diff line change 3
3
$content ,
4
4
$ensure = ' present' ,
5
5
$priority = ' 25' ,
6
+ $verify_config = true ,
6
7
) {
7
8
include ::apache
8
9
9
10
# # Apache include does not always work with spaces in the filename
10
11
$filename = regsubst($name , ' ' , ' _' , ' G' )
11
12
12
13
::apache::custom_config { $filename:
13
- ensure => $ensure ,
14
- confdir => $::apache::vhost_dir ,
15
- content => $content ,
16
- priority => $priority ,
14
+ ensure => $ensure ,
15
+ confdir => $::apache::vhost_dir ,
16
+ content => $content ,
17
+ priority => $priority ,
18
+ verify_config => $verify_config ,
17
19
}
18
20
19
21
# NOTE(pabelanger): This code is duplicated in ::apache::vhost and needs to
You can’t perform that action at this time.
0 commit comments