9 lines
152 B
Puppet
9 lines
152 B
Puppet
# @summary This profile installs apache and turns off the default vhost
|
|
class profile::apache {
|
|
|
|
class { 'apache':
|
|
default_vhost => false,
|
|
}
|
|
|
|
}
|