This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module.exports = function (grunt) { | |
var config = {}; | |
//all tasks that must be loaded. | |
var tasks = [ | |
'grunt-contrib-watch' | |
,'grunt-contrib-concat' | |
,'grunt-contrib-uglify' | |
,'grunt-contrib-sass' | |
,'grunt-contrib-htmlmin' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class http { | |
define apache::loadmodule () { | |
exec { "/usr/sbin/a2enmod $name" : | |
unless => "/bin/readlink -e /etc/apache2/mods-enabled/${name}.load", | |
notify => Service[apache2] | |
} | |
} | |
apache::loadmodule{"rewrite":} |
NewerOlder