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
See the file “LICENSE” for the full license governing this code.
10 11 12 13 14 15 16 17 18 19 |
# File 'manifests/database/em_license.pp', line 10
class pg_profile::database::em_license
{
include stdlib
unless defined(Class['easy_type::license::available']) {
class{'::easy_type::license::available':
stage => 'setup',
}
}
}
|