Skip to content

Commit

Permalink
Merge pull request #3 from michaelcontento/use-latest-release-with-fi…
Browse files Browse the repository at this point in the history
…xed-ssl

Use latest release with fixed ssl
  • Loading branch information
mdxp committed Feb 10, 2013
2 parents 7662efe + 098845f commit cc830fc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
4 changes: 2 additions & 2 deletions attributes/default.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
default['icinga']['version'] = "1.4.2"
default['icinga']['checksum'] = "506022493295bda95aa2514bfdc3196063ed936655bc60068f61543504b42aa6"
default['icinga']['version'] = "1.8.1"
default['icinga']['checksum'] = "3d02d80bdefc2518ab8517be6930a518b77747e0243fa594731fb1f95dbab916"
default['icinga']['prefix'] = "/usr/local/icinga"

default['icinga']['sysadmin_email'] = "root@localhost"
Expand Down
7 changes: 5 additions & 2 deletions recipes/core_source.rb
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,11 @@
code <<-EOH
tar -zxf icinga-#{version}.tar.gz && \
cd icinga-#{version} && \
./configure --with-icinga-user=#{iuser} --with-icinga-group=#{igroup} --with-nagios-user=#{iuser} --with-nagios-group=#{igroup} \
--with-command-user=#{iuser} --with-command-group=#{igroup} --prefix #{node['icinga']['prefix']} --enable-idoutils --enable-ssl && \
./configure \
--with-icinga-user=#{iuser} --with-icinga-group=#{igroup} \
--with-command-user=#{iuser} --with-command-group=#{igroup} \
--with-ssl-lib=/usr/lib/${HOSTTYPE}-linux-gnu/ --enable-ssl \
--prefix #{node['icinga']['prefix']} --enable-idoutils && \
make all && \
make fullinstall
EOH
Expand Down

0 comments on commit cc830fc

Please sign in to comment.