Add a missing dependency on the zlib1g-dev for the backup gem

Fixes #56
This commit is contained in:
Greg Karékinian 2019-05-03 10:58:39 +02:00
parent 0a62f2d5e0
commit 37aa87df5e
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@ maintainer_email 'mail@kosmos.org'
license 'MIT' license 'MIT'
description "Installs/configures backup via the Backup gem" description "Installs/configures backup via the Backup gem"
long_description IO.read(File.join(File.dirname(__FILE__), 'README.rdoc')) long_description IO.read(File.join(File.dirname(__FILE__), 'README.rdoc'))
version "0.5.0" version "0.5.1"
name "backup" name "backup"
depends 'logrotate' depends 'logrotate'

View File

@ -26,7 +26,7 @@
build_essential 'backup gem' build_essential 'backup gem'
# Don't try to install packages on older Ubuntu, the repositories are 404 # Don't try to install packages on older Ubuntu, the repositories are 404
package ["ruby", "ruby-dev"] if node[:platform_version].to_f >= 16.04 package ["ruby", "ruby-dev", "zlib1g-dev"] if node[:platform_version].to_f >= 16.04
gem_package 'backup' do gem_package 'backup' do
version '5.0.0.beta.2' version '5.0.0.beta.2'