Version information
This version is compatible with:
- Puppet 3.x
- , ,
Start using this module
Add this module to your Puppetfile:
mod 'lbetz-tomcat', '0.4.2'
Learn more about managing modules with a PuppetfileDocumentation
#tomcat
##Overview
The tomcat module allows you to set up and manage a standalone or multiple instances.
##Module Description
###Compatibility
This module is currently aimed at the RHEL and Debian packaged versions of Tomcat versions 6 and 7.
It has only been tested on CentOS 6/7 and Debian 6/7/8 with the base OS tomcat 6 and tomcat 7 (EPEL for RHEL) packages.
###Requirements
- Puppet 3.x
- puppetlabs/stdlib >= 3.2.1
- puppetlabs/concat >= 1.0.1
##Setup
###Beginning with Tomcat
All tomcat packages will be installed and tomcat is configured as standalone server. The OS specific file and directory structure is used, i.e. /etc/tomcat6/server.xml. Hash config could contain the hole configuration or just a part of it. For defaults take a look to manifests/params.pp, defaults hash.
class { 'tomcat': }
To install tomcat 7 standalone with an AJP connector instead of HTTP use the following:
class { 'tomcat':
version => '7',
services => {
Catalina => {
connectors => {
ajp-8009 => {
port => '8009',
protocol => 'AJP/1.3',
},
},
},
}, # services
}
Or use this yaml file in your hiera datastore:
tomcat::version: '7'
tomcat::services:
Catalina:
connectors:
ajp-8009:
port: '8009'
protocol: 'AJP/1.3'
###Configure a virtual host
Setup a new virtual host instead the default host 'localhost', using a JRE 6.
tomcat::java_home: '/etc/alternatives/jre_1.6.0'
tomcat::services:
Catalina
engine:
Catalina:
default_host: 'www.example.com'
hosts:
www.example.com:
app_base: 'webapps'
unpack_wars: true
auto_deploy: true
xml_validation: false
xml_namespace_aware: false
Configure and manage another virtual host. First part of the title is the servername, tomcat6 or tomcat7 for standalone server. The second part is the service, the third the engine there the virtual host 'www.example.com' belongs to.
tomcat::host { 'tomcat6:Catalina:Catalina:www.example.com': app_base => 'webapps', unpack_wars => true, auto_deploy => true, xml_validation => false, xml_namespace_aware => false, }
###Configure multiple instances
For using tomcat as multi instance server, set ensure to 'stopped' and enable to 'false'. That will shutdown and disable the the standalone server.
class { 'tomcat':
ensure => stopped,
enable => false,
}
Installs base OS tomcat version 6 packages in specified version 6.0.24-72.el6_5. All configuration files and webapps for instances of tomcat will be stored under /var/tomcat in a subdirectory named as the tomcat::server title.
class { 'tomcat':
ensure => stopped,
enable => false,
version => '6',
release => '6.0.24-72.el6_5',
basedir => '/var/tomcat',
}
Setup a new instance of tomcat, using a Java Runtime Environment 1.6.0 and management port 8005. Base directory for this instance is $basdir/myapp1, $basedir (default /var/tomcat) set in tomcat class.
tomcat::server { 'myapp1':
ensure => 'running',
enable => false,
port => '8005',
java_home => '/etc/alternatives/jre_1.6.0',
}
```
##Usage
###Classes and Defined Types
####Class: `tomcat`
**Parameters within `tomcat`:**
#####`ensure`
present or running (present), stopped
#####`enable`
Enables (true, default) or disables (false) the service to start at boot.
#####`version`
The version of Apache Tomcat server, supported versions are 6 (default) and 7.
#####`release`
Valid values are 'latest', 'installed' or an exact release version, i.e. '6.0.24-64.el6_5'.
#####`port`
Management port (default 8005) on localhost.
#####`listeners`
Hash of listeners in the global server section (server.xml).
#####`resources`
Hash of global resources in the server section (server.xml).
#####`services`
Hash of services and their attributes.
#####`manage`
Enables (default) the configuration by this module. Disable means, that you have
to manage the configuration in server.xml outside and notify the service.
#####`setenv`
Handles environment variables in sysconfig file.
#####`basedir`
Base directory where to install server instances and their configurations. Directory
'basedir' has to exist. Ignored for multi instance setup (config => false).
####Defined Type: `tomcat::server`
Notice: parameters you set in declaration of class `tomcat` acts as defaults for `tomcat::server`.
**Parameters within `tomcat::server`:**
#####`ensure`
Valid values are present or running (present), stopped.
#####`enabled`
Enables (true, default) or disables (false) the service to start at boot.
#####`user`
user context for running of this instance.
#####`group`
same for group
```puppet
class { 'tomcat':
ensure => stopped,
enable => false,
version => 6,
}
tomcat::server { 'myapp1': }
group { 'myapp2':
ensure => present,
}
user { 'myapp2':
ensure => present,
gid => 'myapp2',
shell => '/sbin/nologin',
home => '/var/tomcat/myapp1',
} ->
tomcat::server { 'myapp2':
user => 'myapp2',
group => 'myapp2',
port => '8006',
services => {
'Catalina' => {
connectors => {
'ajp-8009' => {
port => '8009',
protocol => 'AJP/1.3',
redirect_port => '8443',
},
},
},
},
}
```
#####`port`
Management port (default 8005) on localhost for this instance.
#####`listeners`
Hash of listeners in the global server section (server.xml). Default, for Tomcat 6
```puppet
'listeners' => {
'org.apache.catalina.core.AprLifecycleListener' => { 'ssl_engine' => 'On', },
'org.apache.catalina.core.JasperListener' => {},
'org.apache.catalina.core.JreMemoryLeakPreventionListener' => {},
'org.apache.catalina.mbeans.GlobalResourcesLifecycleListener' => {},
'org.apache.catalina.mbeans.ServerLifecycleListener' => {},
},
```
rather for Tomcat 7
```puppet
'listeners' => {
'org.apache.catalina.core.AprLifecycleListener' => { 'ssl_engine' => 'On', },
'org.apache.catalina.core.JasperListener' => {},
'org.apache.catalina.core.JreMemoryLeakPreventionListener' => {},
'org.apache.catalina.mbeans.GlobalResourcesLifecycleListener' => {},
'org.apache.catalina.core.ThreadLocalLeakPreventionListener' => {},
},
```
#####`resources`
Hash of global resources in the server section (server.xml), default sets to:
```puppet
resources => {
'UserDatabase' => {
'auth' => 'Container',
'type' => 'org.apache.catalina.UserDatabase',
'extra_attrs' => {
'description' => 'User database that can be updated and saved',
'factory' => 'org.apache.catalina.users.MemoryUserDatabaseFactory',
'pathname' => 'conf/tomcat-users.xml',
},
},
```
#####`services`
Hash of services and their attributes.
#####`java_home`
Directory where to find the java binary in subdirectory bin.
#####`manage`
Enables (default) the configuration of server.xml by this module. Disable means, that
you have to manage the configuration outside and start/restart the service.
```puppet
class { 'tomcat':
ensure => stopped,
enable => false,
version => '6',
}
tomcat::server { 'myapp1':
manage => false,
}
file { '/var/tomcat/myapp1/conf/server.xml':
ensure => file,
owner => 'root',
group => 'root',
mode => '0644',
source => 'puppet:///modules/tomcat/example-server.xml',
notify => Tomcat::Server::Service['myapp1'],
}
```
Notice notifying Tomcat::Server does not work, you have to do this against Tomcat::Server::Service.
#####`setenv`
Handles environment variables in 'bin/setenv.sh'.
```puppet
setenv => [ 'JAVA_XMX="256m"', 'JAVA_XX_MAXPERMSIZE="256m' ]
```
Variables to use:
* `DSUN_JAVA2D_OPENGL` true|false
* `DJAVA_AWT_HEADLESS` true|false
* `JAVA_XMX`
* `JAVA_XX_MAXPERMSIZE`
Use `ADD_JAVA_OPTS` for all other environment variables.
```puppet
setenv => [ 'ADD_JAVA_OPTS="-Xminf0.1 -Xmaxf0.3"' ]
```
####Defined Type: `tomcat::resource`
```puppet
tomcat::resource { 'myapp1:UserDatabase':
auth => 'Container',
type => 'org.apache.catalina.UserDatabase',
extra_attrs => {
description => 'User database that can be updated and saved',
factory => 'org.apache.catalina.users.MemoryUserDatabaseFactory',
pathname => 'conf/tomcat-users.xml',
},
}
```
**Parameters within `tomcat::resource`:**
#####`server`
Name of tomcat server instance to add a resource,
automaticly taken from 'title' then using 'title' like 'server:resource' otherwise undef.
#####`resource`
Name of the resource,
automaticly taken from 'title' then using 'title' like 'server:resource' otherwise undef.
#####`auth`
authentication, default 'container'
#####`type`
Take a look at Apache Tomcat documentation.
#####`extra_attrs`
Hash of extra attributes (key => value) for this resource.
####Defined Type: `tomcat::listener`
```puppet
tomcat::listener { 'myapp1:org.apache.catalina.core.AprLifecycleListener':
ssl_engine => 'On',
}
```
**Parameters within `tomcat::listener`:**
#####`server`
Name of tomcat server instance to add the listener,
automaticly taken from 'title' then using 'title' like 'server:class_name' otherwise undef.
#####`class_name`
Listener with class_name 'class_name',
automaticly taken from 'title' then using 'title' like 'server:class_name' otherwise undef.
#####`ssl_engine`
Specify the ssl_engine, default 'undef' (disabled).
####Defined Type: `tomcat::service`
```puppet
tomcat::service { 'myapp1:Catalina':
connetcors => {},
engine => {},
}
```
**Parameters within `tomcat::service`:**
#####`server`
Name of tomcat server instance to add the service,
automaticly taken from 'title' then using 'title' like 'server:service' otherwise undef.
#####`service`
Service with name 'service',
automaticly taken from 'title' then using 'title' like 'server:service' otherwise undef.
#####`connectors`
Hash of connectors and their attributes. If sets and non equal to empty hash {}, the default is used:
```puppet
connectors => {
'http-8080' => {
port => '8080',
protocol => 'HTTP/1.1',
redirect_port => '8443',
}
```
#####`engine`
Hash of the engine and their attributes.
####Defined Type: `tomcat::connector`
```puppet
tomcat::connector { 'myapp1:Catalina:ajp-8009':
port => '8009',
protocol => 'AJP/1.3',
redirect_port => '8443',
}
```
**Parameters within `tomcat::connector`:**
#####`server`
Name of tomcat server instance to add the connector,
automaticly taken from 'title' then using 'title' like 'server:service:connector' otherwise undef.
#####`service`
Name of tomcat service to add the connector,
automaticly taken from 'title' then using 'title' like 'server:service:connector' otherwise undef.
#####`connector`
Name of the connector,
automaticly taken from 'title' then using 'title' like 'server:service:connector' otherwise undef.
#####`uri_encoding`
accepted encoding
#####`port`
Listen port, default 8080 (HTTP/1.1)
#####`address`
Address to bind, default is false that means bind to all interfaces.
#####`protocol`
Supported protocols are HTTP/1.1 (default) and AJP/1.3.
For these parameters, take a look at the Apache Tomcat documentation:
* `connection_timeout`
* `redirect_port`
* `options`
* `scheme`
* `executor`
####Defined Type: `tomcat::engine`
```puppet
tomcat::engine { 'myapp1:Catalina:Catalina':
default_host => 'localhost'
hosts => {},
realms => {
'org.apache.catalina.realm.UserDatabaseRealm' => {
'attrs' => {
'resource_name' => 'UserDatabase',
},
},
},
}
```
**Parameters within `tomcat::engine`:**
#####`server`
Name of tomcat server instance to add the connector,
automaticly taken from 'title' then using 'title' like 'server:service:engine' otherwise undef.
#####`service`
Name of tomcat engine to add the service 'service',
automaticly taken from 'title' then using 'title' like 'server:service:engine' otherwise undef.
#####`engine`
Name of the engine,
automaticly taken from 'title' then using 'title' like 'server:service:engine' otherwise undef.
#####`default_host`
Every engine has to have a default host, default 'localhost'.
#####`hosts`
Hash of hosts defined under this engine.
#####`realms`
Hash of realms defined under this engine.
####Defined Type: `tomcat::realm`
```puppet
tomcat::realm { 'myapp1:Catalina:Catalina:www.example:': }
```
```puppet
tomcat::realm { 'myapp1:Catalina:Catalina:*:': }
```
**Parameters within `tomcat::realm`:**
#####`server`
Name of tomcat server instance to add the connector,
automaticly taken from 'title' then using 'title' like 'server:service:engine:host:realm:class_name' otherwise undef.
#####`service`
Name of tomcat engine to add the service 'service',
automaticly taken from 'title' then using 'title' like 'server:service:engine:host:realm:class_name' otherwise undef.
#####`engine`
Name of the engine,
automaticly taken from 'title' then using 'title' like 'server:service:engine:host:realm:class_name' otherwise undef.
#####`host`
Name of the host,
automaticly taken from 'title' then using 'title' like 'server:service:engine:host:realm:class_name' otherwise undef.
#####`realm`
Name of the realm,
automaticly taken from 'title' then using 'title' like 'server:service:engine:host:realm:class_name' otherwise undef.
#####`class_name`
Classname used for this realm,
automaticly taken from 'title' then using 'title' like 'server:service:engine:host:realm:class_name' otherwise undef.
#####`attrs`
Hash of attributes defined for this realm.
#####`realms`
Hash of realms defined under this realm.
####Defined Type: `tomcat::host`
```puppet
tomcat::host { 'myapp1:Catalina:Catalina:www.example.com':
realms => {},
app_base => 'webapps',
unpack_wars => true,
auto_deploy => true,
xml_validation => false,
xml_namespace_aware => false,
}
```
**Parameters within `tomcat::host`:**
#####`server`
Name of tomcat server instance to add the connector,
automaticly taken from 'title' then using 'title' like 'server:service:engine:host' otherwise undef.
#####`service`
Name of tomcat engine to add the service 'service',
automaticly taken from 'title' then using 'title' like 'server:service:engine:host' otherwise undef.
#####`engine`
Name of the engine,
automaticly taken from 'title' then using 'title' like 'server:service:engine:host' otherwise undef.
#####`host`
Name of the host,
automaticly taken from 'title' then using 'title' like 'server:service:engine:host' otherwise undef.
#####`realms`
Hash of realms defined for this host.
For these parameters, take a look at the Apache Tomcat documentation:
* `app_base`
* `auto_deploy`
* `unpack_wars`
* `xml_validation`
* `xml_namespace_aware`
2015-02-17 0.4.2
Summary
Only fixes in this release.
Fixes:
- #2: webapps, work directory (in multi instance setup) now group ownership is set to group tomcat is running.
- #4: tomcat7 on redhat didn't start instances
2015-01-09 0.4.1
Summary
Improved code quality and started to implement unit tests.
2014-12-19 0.4.0
Summary
Added systemd support for CentOS7 and Debian8
Changes:
- added TOMCAT_LOG to sysconfig/default file
- create PID files before starting instances
- remove default init and sysconfig/default file when using multi instances
- systemd support, create and remove systemd service files and using an exec resource for 'systemctl daemon-reload'
- License changed to Apache 2.0
Fixes:
- deleting catalina.pid before stopping service
2014-10-12 0.3.2
Summary
Only fixes in this release.
Fixes:
- removed double suffix .pid for pid file
2014-09-24 0.3.1
Summary
Added debian support.
Changes:
- init scripts now copied and the provides field and var NAME (debian7) changed
- define tomcat::server::initialize now is declared for multi instances only, for standalone a file resource inserted.
2014-09-17 0.3.0
Summary
Change some things how to configure the standalone and multi server.
Changes:
- user, group can now be set for every instance
- using dist init script instead of own template, but using the pattern parameter instead of init script status. (RedHat has problems to differ between instances)
- parameter moved from managed to manage manage=false now means you have to manage server.xml
- config parameter is removed, now please use parameter enable=false and ensure=stopped to set to standalone
- now the parameter listener, service, resources and java_home set for class tomcat, are used also as defaults for server instances in multi server mode.
- setenv are moved to sysconfig, classpath removed
2014-08-27 0.2.3
Summary
Added feature default parameters
Changes:
- set tomcat::config parameter default to {} (before false), so you will get now a standalone server with a default configuration.
Features:
- default connector http-8080
- default listeners
- set default hosts to localhost
- default engine 'Catalina'
- default service 'Catalina'
- default resources
2014-08-25 0.2.2
Summary
Only fixes in this release.
Fixes:
- added standalone configuration for tomcat 7
2014-08-04 0.2.1
Summary
Only fixes in this release.
Fixes:
- dependency cycle in multi instance
- concat dependency in service, engine, ...
- change dependency between init script (file permission <-> service stopped) for multi instance
2014-08-01 0.2.0
Summary
Added feature standalone for using Tomcat standalone on a CentOS.
Features:
- standalone server, using standard paths
Fixes:
- changed owner, group and permission to CentOS like
- fixed combined or lookout realms (nested realms to realm)
2014-06-17 0.1.3
Summary
This release update to concat version >= 1.0.1
Features:
- remove interference in concat module
Dependencies
- puppetlabs/stdlib (>= 3.2.0)
- puppetlabs/concat (>= 1.0.0)
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "{}" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright 2014 Lennart Betz Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.