Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-06-08 | fix dynamic scope variables, function access | mh | |
2012-06-06 | fix for new style for 2.7 | mh | |
2012-06-05 | new style for 2.7 | mh | |
2012-05-31 | fix various puppet language things | mh | |
2012-05-29 | rename site modules | mh | |
2012-04-18 | Merge remote-tracking branch 'lelutin/readme' | Micah Anderson | |
2012-04-18 | Merge remote-tracking branch 'lelutin/config_ensure_absent' | Micah Anderson | |
2012-04-18 | Dependency to package missing for File['include_dir'] | Gabriel Filion | |
some runs produce an error because of a missing "require" link from 'include_dir' to the apache package: err: /Stage[main]/Apache::Base/File[include_dir]/ensure: change from absent to directory failed: Cannot create /etc/apache2/include.d; parent directory /etc/apache2 does not exist Signed-off-by: Gabriel Filion <lelutin@gmail.com> | |||
2012-04-09 | Document, in the README, how to use the module | Gabriel Filion | |
Signed-off-by: Gabriel Filion <lelutin@gmail.com> | |||
2012-03-07 | add UPGRADE NOTICE to README. Rearrange a little to make it flow nicer | Micah Anderson | |
2012-03-07 | Add default vhost files for Debian | Gabriel Filion | |
Taken from a Debian Squeeze install of Apache. Signed-off-by: Gabriel Filion <lelutin@gmail.com> | |||
2012-02-25 | add only if to workaround puppet bug #12830 | mh | |
2012-02-21 | use correct selinux type | mh | |
2012-02-12 | require sftponly class | mh | |
2012-02-12 | manage selinux stuff | mh | |
2012-01-08 | wrap it in a module statement | mh | |
2012-01-08 | correct naming | mh | |
2011-12-28 | set gem_home for the ruby apps | mh | |
2011-12-27 | reject undef items | mh | |
2011-12-11 | Avoid setting source or content when trying to remove apache::config::file | Gabriel Filion | |
Currently, when trying to remove a config file that is not present in one of the source directories, you get an error about puppet not being able to find the file, which kills the puppet run. We need a special case for when $ensure is set to 'absent' or 'purged' so that we avoid setting the source argument. Signed-off-by: Gabriel Filion <lelutin@gmail.com> | |||
2011-12-09 | config: Implement config files as links | Gabriel Filion | |
Some packages in Debian manage an Apache config file in their own /etc directory and create a link to that file in Apache's conf.d directory. One example package that does this is nagios3. Introduce a new argument, $target, that can be used to specify the link destination. When using $target, the value to $ensure must also be 'link' to make the file into a symbolic link. This is to make it explicit when we want the apache::config::file to behave differently than the normal behaviour of creating a plain text file in conf.d. Signed-off-by: Gabriel Filion <lelutin@gmail.com> | |||
2011-12-09 | allow custom config file source in the form of an array | Jerome Charaoui | |
The $source argument is not flexible enough as it is. It currently forces the source to be unique. Sometimes we'd like to be able to specify an array of possible sources. So we'll use the $source directly with the file resource without enforcing its format. WATCH OUT: this could break currently deployed apache::config::file resources, so one should change occurences of this resource's argument from: source => "modules/site-apache/blah" to a full source specification string: source => "puppet:///modules/site-apache/blah" | |||
2011-12-09 | make apache::debian::module work with a version-specific ensure | Jerome Charaoui | |
Currently, the code expects $ensure to be either 'present' or 'absent' when enabling/disabling the concerned module. It does not take into account that other values could be set. Those other values could be 'purged' and any specific version tag. 'purged' must behave similarly to 'absent' (e.g. disable the module) and all other cases ('present' and a version tag) must enable the module. | |||
2011-11-29 | additional folder | mh | |
2011-11-29 | fix a few things that should be writable | mh | |
2011-11-23 | there is another Listen example already commented out | mh | |
2011-11-22 | as file_line lacks ensure => absent, we have to do it with a sed | mh | |
2011-11-22 | we use now file_line | mh | |
2011-11-20 | include php default dirs if we want to add subdirs | mh | |
2011-10-18 | fix variable naming | mh | |
2011-10-18 | fix value lookup - take 2 | mh | |
2011-10-18 | fix value lookup | mh | |
2011-10-17 | fix gallery template partial passing | mh | |
2011-10-13 | correct naming | mh | |
2011-10-13 | add worker related config files | mh | |
2011-10-13 | if we run as fcgid, we need to tell safe_mode that gid is fine | mh | |
2011-10-13 | enforce space between options | mh | |
2011-10-12 | rename partial correctly | mh | |
2011-10-12 | fix template path | mh | |
2011-10-09 | no need to configure fcgid on redirect hosts | mh | |
2011-10-09 | we should take the key not the value :/ | mh | |
2011-10-09 | hashs are not sorted, but for idempotence we should sort it | mh | |
2011-10-09 | remove stupid cycle | mh | |
2011-10-09 | migrate to new file_line type | mh | |
2011-10-09 | remove old param | mh | |
2011-10-09 | set max requests on the same as the php requests, as per ↵ | mh | |
https://httpd.apache.org/mod_fcgid/mod/mod_fcgid.html | |||
2011-10-09 | we need these rewrite rules, otherwise it won't work with cgi | mh | |
2011-10-09 | the script must be in its own location | mh | |
2011-10-09 | passing extension is not everyhwere defined | mh | |
2011-10-09 | fix naming | mh | |