search for: disable_apachemods

Displaying 1 result from an estimated 1 matches for "disable_apachemods".

2011 Aug 01
3
Class inheritance or virtual resources to manage apache modules
...y 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 enable a2mod { $enable_apachemods: ensure => "present", notify => Exec["apache2reload"] } # Process list of apache modules to disable a2mod { $disable_apa...