A puppet module for managing the freetds database connection driver for linux
This is the freetds module. It installs the freetds driver and manages database connections which use it
FreeTDS is a set of libraries for Unix and Linux which allow applications to natively talk to Microsoft SQL Server and Sybase databases. Anything which comunicates over the Tabular Data Stream protocol.
This module will install the freetds packages and manage odbcinst.ini file to register the driver. You can also specify the hostnames of database source which you which to connect to using freetds. This will create a system wide DSN which you can use during in your applications connection strings for database setups.
Install the FreeTDS driver and register it
include freetds
Manage a dsn entry for for database.myorganisation.com
freetds::db { 'DatabaseDSN' :
host => 'database.myorganisation.com',
}
This module requires puppetlabs/inifile for managing tds + odbc configuration files
This module has been tested on ubuntu (12.04, 14.04) lts
Christopher Johnson - [email protected]