Skip to content

Commit

Permalink
WEB-3137
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed Feb 23, 2017
1 parent f95b433 commit cbdfba9
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions recipes/author.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,15 @@
end
end

unless node[:aem][:use_yum]
aem_jar_installer 'author' do
download_url node[:aem][:package_store_url]
default_context node[:aem][:author][:default_context]
port node[:aem][:author][:port]
action :install
end
end

unless node[:aem][:license_customer_name].nil? && node[:aem][:license_download_id].nil?
template "#{node[:aem][:author][:default_context]}/license.properties" do
source 'license.properties.erb'
Expand Down
9 changes: 9 additions & 0 deletions recipes/publish.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,15 @@
end
end

unless node[:aem][:use_yum]
aem_jar_installer 'publish' do
download_url node[:aem][:package_store_url]
default_context node[:aem][:publish][:default_context]
port node[:aem][:publish][:port]
action :install
end
end

unless node[:aem][:license_url].nil?
remote_file "#{node[:aem][:publish][:default_context]}/license.properties" do
source "#{node[:aem][:license_url]}"
Expand Down

0 comments on commit cbdfba9

Please sign in to comment.