Skip to content
This repository was archived by the owner on Jan 29, 2022. It is now read-only.

Commit

Permalink
Add/fix redis dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
dhollinger committed Mar 9, 2020
1 parent 23f1907 commit 0fd87af
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build/vanagon/components/app.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@

if platform.is_deb?
pkg.requires 'sqlite3'
pkg.requires 'redis-server'
elsif platform.is_el?
pkg.add_preinstall_action('install', 'yum install epel-release')
pkg.requires 'sqlite'
pkg.requires 'redis'
else
raise("Plaform #{platform.name} is not yet supported")
end
pkg.requires 'redis'

pkg.build_requires 'ruby-2.6'
pkg.build_requires 'sqlite3'
Expand Down

0 comments on commit 0fd87af

Please sign in to comment.