Puppet Class: apache::vhost
- Defined in:
- manifests/init.pp
Overview
64 65 66 67 68 69 70 71 72 73 |
# File 'manifests/init.pp', line 64
class apache::vhost {
exec { 'wordpressvhost':
command => 'a2ensite wordpress && a2dissite default',
path => [ "/usr/sbin", "/usr/bin" ],
require => [
Class["lamp::install"],
Class["wordpress::install"],
]
}
}
|