This cookbook install and configure FreeTDS
- CentOS (tested on 6.6 - source only)
- Debian (tested on 7.4)
- Ubuntu (tested on 12.04 and 14.04)
May work with or without modification on other distributions.
Just include freetds
in your node's run_list
.
If you want to configure some server add them to your node's attributes:
node['freetds']['servers'] = [
{
'name' => 'egServer70',
'description' => 'A typical Microsoft server',
'host'=> 'ntmachine.domain.com',
'port' => 1433,
'tds_version' => '7.0',
'text_size' => 1024,
'client_charset' => 'UTF-8',
'encryption' => 'off' # require/request/off
}
]
- Fork the repository on Github
- Create a named feature branch (like
add_component_x
) - Write you change
- Write tests for your change (if applicable)
- Run the tests, ensuring they all pass
- Submit a Pull Request using Github
Authors: Olivier Brisse