# Rakefile handles some common puppet tasks
#
# :module:new[module_name]
#

require 'rake'
Dir.glob('tasks/*.rake').each { |r| import r }

# global modulepath
$modulepath = File.dirname(File.expand_path(__FILE__)) + '/puppet-monolith/modules'

# default task is to display tasks
task :default do
  system("rake -T")
end
