File tree 3 files changed +4
-13
lines changed
3 files changed +4
-13
lines changed Original file line number Diff line number Diff line change 74
74
}
75
75
}
76
76
77
- # prevent problems with being unable to create dir in /tmp
78
- if ! defined (File [$override_options [' mysqld' ][' tmpdir' ]]) {
79
- file { $override_options [' mysqld' ][' tmpdir' ]:
80
- ensure => directory ,
81
- owner => $mariadb_user ,
82
- group => $mysql::params::root_group ,
83
- mode => ' 0775' ,
84
- require => Class[' mysql::client' ],
85
- notify => Service[$settings [' service_name' ]]
86
- }
87
- }
88
-
89
77
# Ensure the data directory exists
90
78
if ! defined (File [$mysql::params::datadir ]) {
91
79
file { $mysql::params::datadir :
Original file line number Diff line number Diff line change 270
270
$autoindex = ' off'
271
271
}
272
272
273
- if $location [' internal' ] {
273
+ if array_true( $location , ' internal ' ) and $location [' internal' ] != ' off ' {
274
274
$internal = true
275
275
} else {
276
276
$internal = false
284
284
# transforms user-data to expected
285
285
$location_custom_data = merge($location_trimmed , {
286
286
' autoindex' => $autoindex ,
287
+ ' internal' => $internal ,
287
288
})
288
289
289
290
# Takes gui ENV vars: fastcgi_param {ENV_NAME} {VALUE}
Original file line number Diff line number Diff line change @@ -71,6 +71,8 @@ Vagrant.configure('2') do |config|
71
71
config . hostmanager . ignore_private_ip = false
72
72
config . hostmanager . include_offline = false
73
73
config . hostmanager . aliases = hosts
74
+
75
+ config . vm . provision :hostmanager
74
76
end
75
77
end
76
78
You can’t perform that action at this time.
0 commit comments