talend_commandline
This module is used to install Talend CommandLine (essentially a copy of Talend Studio), as well as install a service using supervisord.
Version information
released Nov 21st 2016
This version is compatible with:
- ,
Start using this module
Add this module to your Puppetfile:
mod 'williamtsoi-talend_commandline', '0.2.0'
Learn more about managing modules with a PuppetfileDocumentation
williamtsoi/talend_commandline — version 0.2.0 Nov 21st 2016
Overview
This module is used to install Talend CommandLine (essentially a copy of Talend Studio), as well as install a service using supervisord.
Module Description
This module will:
- Download and extract a copy of Talend studio from a given URL
- Download and install a license file from a given URL
- (optional) Download and extract a compressed file with required libraries (such as jdbc connectors)
- Manage and create (if required) a user and group used to run the CommandLine service
- Create a folder to store builds required for Talend builds
- Install supervisord, used to run the commandline process
- Configure the CommandLine as a program within supervisord
- Start the CommandLine service
Usage
Basic (minimal) setup
class { '::talend_commandline':
cmdline_url => 'http://foo.com/Talend-Studio-20160704_1411-V6.2.1.zip',
license_url => 'http://foo.com/license',
}
Custom Setup with all parameters
class { '::talend_commandline':
$cmdline_url => 'http://foo.com/Talend-Studio-20160704_1411-V6.2.1.zip',
$cmdline_home => '/opt/cmdline',
$cmdline_subfolder => 'Talend-Studio-20160704_1411-V6.2.1',
$cmdline_user => 'talend',
$cmdline_group => 'talend',
$manage_user => true,
$manage_group => true,
$license_url => 'http://foo.com/license',
$cmdline_exports_path => '/opt/cmdline/exports',
$cmdline_db_connectors_url => undef,
$cmdline_port => 8002,
$jmxremote_port => 8887,
}
Limitations
TODO: This is where you list OS compatibility, version compatibility, etc.
Development
TODO: Since your module is awesome, other users will want to play with it. Let them know what the ground rules for contributing are.
YYYY-MM-DD Release 0.1.0
- something you did
- something else you did
Dependencies
- puppetlabs-stdlib (>= 4.13.1)
- puppet-staging (>= 2.0.1)
- flypenguin-mkdir (>= 1.0.4)
- puppetlabs-concat (>= 2.2.0)
- ajcrowe-supervisord (>= 0.6.1)
MIT License Copyright (c) [year] [fullname] 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.