Displaying 1 result from an estimated 1 matches for "enable_apachemod".
Did you mean:
enable_apachemods
2011 Aug 01
3
Class inheritance or virtual resources to manage apache modules
...I hope to avoid class inheritance if possible as virtual resources
seems to be the correct way to do this kind of thing.
I however have had troubles with doing that and have ultimately ended
up with the following using inheritance:
class apache2::modules {
# list apache modules to enable
$enable_apachemods = [ "module1", "module2", "module3", ]
# list apache modules to disable, basically all modules would be
listed here by default
$disable_apachemods = [ "module4", "module5", "module6", ]
# Process list of apache modules to enab...