Created
October 3, 2012 12:52
-
-
Save lucky-sideburn/3826757 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
include_recipe "tomcat::base" | |
include_recipe "ark" | |
gb_user = node['geobatch']['user'] | |
user gb_user do | |
action :create | |
supports :manage_home => true | |
end | |
tomcat "geobatch" do | |
user gb_user | |
action :install | |
jvm_opts node['geobatch']['java_options'] | |
http_port 8080 | |
manage_config_file false | |
env node['geobatch']['env'] | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment