How to check Database management class in puppet
cd /root/puppet/modules/platform/manifests/database/oracle
cat enh.pp
##
# Class for an enh database box
#
class platform::database::oracle::enh inherits platform::database::oracle
{
class base inherits platform::database::oracle::enh
{
}
class dev inherits platform::database::oracle::enh::base
{
}
class prd inherits platform::database::oracle::enh::base
{
# Enable NFS client services
nfs::setup {$::hostname: }
# Setup VSC specific stuff
vcs::setup {$::hostname: }
}
include "platform::database::oracle::enh::$::bf_role"
}