Skip to content

Commit 0503cc5

Browse files
committed
Auto-release. Sat Oct 10 12:01:17 EDT 2015.
1 parent cd61980 commit 0503cc5

File tree

3 files changed

+4
-13
lines changed

3 files changed

+4
-13
lines changed

release/puphpet/puppet/nodes/MariaDb.pp

-12
Original file line numberDiff line numberDiff line change
@@ -74,18 +74,6 @@
7474
}
7575
}
7676

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-
8977
# Ensure the data directory exists
9078
if ! defined(File[$mysql::params::datadir]) {
9179
file { $mysql::params::datadir:

release/puphpet/puppet/nodes/Nginx.pp

+2-1
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@
270270
$autoindex = 'off'
271271
}
272272

273-
if $location['internal'] {
273+
if array_true($location, 'internal') and $location['internal'] != 'off' {
274274
$internal = true
275275
} else {
276276
$internal = false
@@ -284,6 +284,7 @@
284284
# transforms user-data to expected
285285
$location_custom_data = merge($location_trimmed, {
286286
'autoindex' => $autoindex,
287+
'internal' => $internal,
287288
})
288289

289290
# Takes gui ENV vars: fastcgi_param {ENV_NAME} {VALUE}

release/puphpet/vagrant/Vagrantfile-local

+2
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,8 @@ Vagrant.configure('2') do |config|
7171
config.hostmanager.ignore_private_ip = false
7272
config.hostmanager.include_offline = false
7373
config.hostmanager.aliases = hosts
74+
75+
config.vm.provision :hostmanager
7476
end
7577
end
7678

0 commit comments

Comments
 (0)