lfryc / chef-jboss7

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

jboss7-cookbook

This is a JBoss 7 cookbook. It's still in development. Feel free to contribute.

V. 0.11.0 - Added a jboss7_user provider to create JBoss 7 standalone mgmt users. - Added sane defaults for bind addresses.

V. 0.10.2 - I realize I forgot to include sane defaults for the port numbers. Now added.

Supported Platforms

Ubuntu 12.04

TODO: CentOS, Windows

Providers

jboss7_user - JBoss 7 user takes two attributes, the "name" of the resource is the account you're adding to the management realm. The password is HEX( MD5( username ':' realm ':' password)). The example password is: HEX( MD5(Administrator:ManagementRealm:changeit!)) You should be able to login to your JBoss management console with the user Administrator, password changeit! The provider uses sed -i to delete users therefore is not GNU sed compliant. User beware! The provider also only concerns itself with the standalone configuration.

TODO: Maybe put password in an encrpted databag? Refactor into a HWRP/library to use native ruby commands to modify jboss user file, in order to be platform independant. Add domain user configuration.

GIT Location

https://github.com/andy-dufour/chef-jboss7

Attributes

Key Type Description Default
['jboss7']['jboss_home'] String Path to the parent directory where JBoss will be installed. E.g., if you want JBoss installed in /opt/jboss, this would be /opt/ /opt/jboss/
['jboss7']['jboss_user'] String User for JBoss to run as. web
['jboss7']['jboss_group'] String Group for JBoss to run as. web
['jboss7']['dl_url'] String URL to download the JBoss tarball from. http://download.jboss.org/jbossas/7.1/jboss-as-7.1.1.Final/jboss-as-7.1.1.Final.tar.gz
['jboss7']['jvm_min_mem'] String Sets your Xms JVM parameter 512m
['jboss7']['jvm_max_mem'] String Sets your Xmx JVM parameter 1024m
['jboss7']['jvm_perm_mem'] String Sets your PermGenSpace JVM parameter 256m
['jboss7']['ajp_port'] String Sets your AJP port in standalone.xml 8009
['jboss7']['http_port'] String Sets your HTTP port in standalone.xml 8080
['jboss7']['https_port'] String Sets your HTTPS port in standalone.xml 8443

Usage

jboss7::default

Include jboss7 in your node's run_list:

{
  "run_list": [
    "recipe[jboss7::default]"
  ]
}

Contributing

  1. Fork the repository on Github
  2. Create a named feature branch (i.e. add-new-recipe)
  3. Write your change
  4. Write tests for your change (if applicable)
  5. Run the tests, ensuring they all pass
  6. Submit a Pull Request

License and Authors

Author:: Andrew DuFour (andy.k.dufour@gmail.com)

About

License:Other


Languages

Language:HTML 50.2%Language:Shell 28.3%Language:Ruby 21.5%