I am attempting to instantiate a puppet-apache module with a specific file override and removal of one of the module's configuration files. Specifically, with module mod::wsgi it normally provides a wsgi.conf and a wsgi.load, but in our instance we wish to eliminate wsgi.conf and provide our own wsgi.load. What is the specific incantation I need to make within my inherited class? The current class definition I am using does not fulfill my needs:
class devportal inherits apache { class { 'apache::mod::wsgi': mod_path => '/home/veveo/pkg/lib/mod_wsgi.so', package_name => 'mod_wsgi', wsgi_python_home => '/home/veveo/pkg', file {'/etc/httpd/conf.d/wsgi.load': source => 'puppet:///modules/devportal/wsgi.load', ensure => present, } file {'/etc/httpd/conf.d/wsgi.conf': ensure => absent, } } -- You received this message because you are subscribed to the Google Groups "Puppet Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to puppet-users+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-users/ffd0e00a-8f8f-4adb-aa70-d623269ebace%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.