Vagrant: Make sure apache and mysql are enabled.

This commit is contained in:
Gunnar Beutner 2013-10-14 17:51:46 +02:00
parent bccf1ce00f
commit bde4f112ad
2 changed files with 2 additions and 0 deletions

View File

@ -25,6 +25,7 @@ class apache {
}
service { $apache:
enable => true,
ensure => running,
alias => 'apache',
require => Package['apache']

View File

@ -24,6 +24,7 @@ class mysql {
}
service { 'mysqld':
enable => true,
ensure => running,
require => Package['mysql-server']
}