patrickdlee / vagrant-examples

A collection of sample Vagrant configurations using Puppet. Starting out simple and getting more complex.
896 stars 319 forks source link

Example 6 - Dynamic site config DB_DSN has incorrect host #5

Closed avenjamin closed 9 years ago

avenjamin commented 9 years ago

On line 5 in the config.php file the DB_DSN is defined as:

'mysql:host=db;dbname=dynamic'

Should this now be:

'mysql:host=ex6db;dbname=dynamic'

…given that the hostnames were updated in the Vagrantfile?

See commit 9c61b5756c3b880b8e9786ed54bd75cc4bd073ce

avenjamin commented 9 years ago

Oops…looks like I spoke to soon.

I see that the hostname 'db' was defined in the baseconfig module

Closing