Module: FalkorLib::Config::Puppet::Modules

Defined in:
lib/falkorlib/puppet/modules.rb

Constant Summary collapse

DEFAULTS =
{
  :metadata => {
    :name         => '',
    :version      => '0.0.1',
    :author       => `git config user.name`.chomp,
    :mail         => `git config user.email`.chomp,
    :summary      => "Configure and manage rtfm",
    :description  => '',
    :license      => 'Apache-2.0',
    :source       => '',
    :project_page => '',
    :issues_url   => '',
    :forge_url    => 'https://forge.puppetlabs.com',
    :dependencies => [],
    :operatingsystem_support => [],
    :tags => []
  },
  :licenses => [
    "Apache-2.0",
    "BSD",
    "GPL-2.0",
    "GPL-3.0",
    "LGPL-2.1",
    "LGPL-3.0",
    "MIT"
  ]
}