12 lines
247 B
Puppet
12 lines
247 B
Puppet
![]() |
# Tests the path and identifier parameters for the apache::mod class
|
||
|
|
||
|
# Base class for clarity:
|
||
|
class { 'apache': }
|
||
|
|
||
|
|
||
|
# Exaple parameter usage:
|
||
|
apache::mod { 'testmod':
|
||
|
path => '/usr/some/path/mod_testmod.so',
|
||
|
id => 'testmod_custom_name',
|
||
|
}
|