Version information
This version is compatible with:
- Puppet Enterprise 2017.3.x, 2017.2.x, 2017.1.x, 2016.5.x, 2016.4.x
- Puppet >=3.7.0 <=5.5.0
- , , ,
Start using this module
Add this module to your Puppetfile:
mod 'spantree-thrift', '1.1.1'
Learn more about managing modules with a PuppetfileDocumentation
thrift
Table of Contents
- Overview
- Module Description
- Setup - The basics of getting started with thrift
- Usage - Configuration options and additional functionality
- Reference - An under-the-hood peek at what the module is doing and how
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
Overview
The thrift module downloads, compiles and installs. The module has been tested on Centos and Ubuntu but it should work on RedHat, Amazon Linux and Debian 7.
Module Description
This module installs thrift with java bindings, in order to do it, it will install openjdk 7 and ant from the apache ant website.
Setup
What thrift affects
- Install the thrift binary
/usr/local/bin/thrift
. - Install openjdk7 and ant from the apache-ant website.
Setup Requirements
None at the moment.
Beginning with thrift
include thrift
is enough to get you up and running. If you wish to pass in parameters specifying a specific version of thrift, then:
class { 'thrift':
version => '0.9.0'
}
##Usage
All interaction with the thrift module can be done through the main thrift class.
###I just want Thrift, what's the minimum I need?
include thrift
###I want a specific version of thrift
class { 'thrift':
version => '0.9.0',
}
###I want to specify a different download source because I am behind a firewall
class { 'thrift':
base_url => 'http://myinternalhost/thrift'
}
##Reference
###Classes
####Public Classes
- thrift: Main class
###Parameters
The following parameters are available in the thrift module:
####version
Specify the version of thrift to use, at the moment defaults to 0.9.1
####base_url
Sets the base url for the download location
###Facts
####thrift_version
Set to the thrift version that is installed.
####thrift_path
Set to the path of the thrift binary
##Limitations
This module has been built on and tested against Puppet 3.2 and higher.
The module has been tested on:
- CentOS 6
- Ubuntu 14.04
Testing on other platforms has been light and cannot be guaranteed.
Development
Release Notes/Contributors/Etc
2014-08-18 Release 0.4.0
- added support to specify thrift version
- update dev env to puppet-module-skeleton from https://github.com/feniix/puppet-module-skeleton
- fix all tests
Dependencies
- camptocamp-archive (>=0.9.0)
- maestrodev-ant (>=1.0.5)
- puppetlabs/stdlib (>=4.5.0 <5.0.0)
Copyright (C) 2013 Adcade Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.