forked from aioi/chef-freetds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata.rb
37 lines (30 loc) · 975 Bytes
/
metadata.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name 'freetds'
maintainer 'Olivier Brisse'
maintainer_email 'obrisse@aioinissaydowa.com.au'
license 'Apache 2.0'
description 'Installs/Configures FreeTDS'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '0.1.4'
%w(ubuntu debian).each do |os|
supports os
end
depends 'build-essential'
attribute 'version',
:display_name => 'Version',
:description => 'The version of FreeTDS to install',
:default => '0.91'
attribute 'checksum',
:display_name => 'Checksum',
:description => 'checksum of the FreeTDS archive',
:required => 'optional'
attribute 'tds_version',
:display_name => 'TDS Version',
:description => 'TDS protocol version',
:default => '7.1'
attribute 'odbc',
:display_name => 'ODBC support',
:description => 'Select wether or not to build the ODBC driver',
:default => 'false'
attribute 'servers',
:display_name => 'Server list',
:description => 'See README'