Puppet Class: pg_profile::database::em_license
- Defined in:
- manifests/database/em_license.pp
Summary
This class will deploy the Enterprise Modules license.Overview
--
pg_profile::database::em_license
–++–
| 9 10 11 12 13 14 15 16 17 18 | # File 'manifests/database/em_license.pp', line 9
class pg_profile::database::em_license
{
  include stdlib
  unless defined(Class['easy_type::license::available']) {
    class{'::easy_type::license::available':
      stage => 'setup',
    }
  }
} |