Skip to content

Commit

Permalink
Fix cookbook for lin32 bit installer
Browse files Browse the repository at this point in the history
  • Loading branch information
Aakansha Bhardwaj authored and Aakansha Bhardwaj committed Nov 5, 2020
1 parent c9da170 commit 8f0daa7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion metadata.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
license 'Apache-2.0'
description 'Installs/Configures tripwire_agent'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '1.1.3'
version '1.1.4'
chef_version '>= 13' if respond_to?(:chef_version)

source_url 'https://github.com/Tripwire/chef-tripwire_agent'
Expand Down
5 changes: 4 additions & 1 deletion resources/axon.rb
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,10 @@

# Set platform specific variables
case node['platform']
when 'centos', 'redhat', 'suse', 'oraclelinux', 'oracle', 'amazon'
when 'centos', 'redhat', 'suse', 'oraclelinux', 'amazon'
ext = '.rpm'
eg_service_name = 'tw-eg-service'
when 'oracle'
ext = '.rpm'
eg_service_name = 'tw-eg-service'
# for Oracle UEK, need to run few extra commands as pre-requisites
Expand Down

0 comments on commit 8f0daa7

Please sign in to comment.