Puppet Class: mssql::client

Defined in:
manifests/client.pp

Summary

Standard constructor

Overview

mssql::client

Standard puppet ensure, e.g. present, absent, installed, etc

Examples:

include mssql::client

Parameters:

  • ensure (String) (defaults to: 'absent')


10
11
12
13
14
15
16
17
18
# File 'manifests/client.pp', line 10

class mssql::client (
  String $ensure = 'absent'
) {
  include ::mssql::client::odbc
  include ::mssql::client::cli

  Class[::mssql::client::odbc]
  -> Class[::mssql::client::cli]
}