Puppet Class: pg_profile

Overview

This is the interface class for this profile. This may only contain parameters and no actual configuration enforcing

Parameters:

  • version (String[1])
  • os_user (String[1])
  • os_group (String[1])
  • db_name (Optional[String[1]]) (defaults to: undef)


2
3
4
5
6
7
# File 'manifests/init.pp', line 2

class pg_profile(
  String[1]           $version,
  String[1]           $os_user,
  String[1]           $os_group,
  Optional[String[1]] $db_name = undef,
){}